/* assets/css/footer.css */

.syn-footer {
    background-color: #f8fafc; /* Světle šedý podklad (default) */
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
    color: #64748b; /* Muted text */
    font-size: 0.9rem;
}

/* Nadpisy v patičce */
.syn-footer h6 {
    color: #0f172a; /* Tmavá pro nadpisy */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

/* Odkazy / Karty webů */
.footer-site-link {
    display: block;
    text-decoration: none;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-site-link:hover {
    color: #0f172a; /* Po najetí ztmavne text */
    transform: translateY(-3px);
}

/* Loga v patičce */
.footer-logo {
    height: 40px; /* Fixní výška pro sjednocení */
    width: auto;
    display: block;
    margin-bottom: 10px;
    filter: none; /* Plnobarevné logo */
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-site-link:hover .footer-logo {
    filter: grayscale(0%); /* Po najetí se vybarví */
    opacity: 1;
}

/* Seznamy */
.syn-footer ul {
    padding-left: 0;
    list-style: none;
}
.syn-footer ul li {
    margin-bottom: 0.5rem;
}
.syn-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.syn-footer a:hover {
    color: #0f172a;
    text-decoration: underline;
}

/* Spodní copyright lišta */
.syn-footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

/* --- Varianta pro Business web (Tmavá) --- */
/* Stačí přidat třídu "footer-dark" do tagu <footer> */
.syn-footer.footer-dark {
    background-color: #0f172a;
    border-top-color: rgba(255,255,255,0.1);
    color: #94a3b8;
}
.syn-footer.footer-dark h6 { color: #ffffff; }
.syn-footer.footer-dark .footer-site-link:hover { color: #ffffff; }
.syn-footer.footer-dark .syn-footer-bottom { border-top-color: rgba(255,255,255,0.1); }
.syn-footer.footer-dark a:hover { color: #facc15; } /* Zlatá pro business */


/* === Synaria Business footer (v2) === */
.syn-footer-list{
  list-style:none;
  padding-left:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.syn-footer-link{
  color:#334155;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  line-height:1.3;
}

.syn-footer-link:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

.syn-footer-icon{
  height: 28px; /* 28px for readability */
  width:auto;
  display:block;
  flex:0 0 auto;
}

.syn-footer-lock{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
}

.syn-footer-legal{
  color:#475569;
  font-size:0.9rem;
  line-height:1.55;
}

.syn-footer-mail{
  color:#334155;
  text-decoration:none;
}
.syn-footer-mail:hover{ text-decoration:underline; }

.syn-footer-note{
  margin-top:10px;
  color:#64748b;
  font-size:0.85rem;
}

.syn-footer-partners a img{
  max-width:180px;
  max-height:70px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
/* --- Footer icon links (safety sizing) --- */
.syn-footer-link--icon{
  display:flex;
  align-items:center;
  gap:10px;
}
.syn-footer-link--icon img,
.syn-footer-list img{
  height:28px !important;
  width:auto !important;
  max-width:160px;
  object-fit:contain;
  flex:0 0 auto;
}

/* Safety sizing: prevent partner/logo icons from blowing up if other CSS overrides */
.syn-footer .footer-logo { height: 34px !important; width: auto !important; max-width: 220px !important; }
.syn-footer .syn-footer-icon { height: 28px !important; width: auto !important; max-width: 160px !important; object-fit: contain; }
.syn-footer { background: #f8fafc !important; }
