/* ============================
   SUBPAGE KONTAKT (jen pro #contact.section-bg)
   ============================ */

/* Světlé pozadí jen na subpage */
section.section-bg#contact {
  background-color: #f7f7ec !important;
  padding: 180px 20px;
  color: #2a200f;
}

/* Nadpis */
section.section-bg#contact .section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
  color: #2a200f;
}

/* Grid layout */
section.section-bg#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Levý sloupec – posun k pravému okraji a pravé zarovnání obsahu */
section.section-bg#contact .contact-info {
  justify-self: end;            /* celé info blok na pravý okraj levé kolony */
  text-align: right !important; /* text doprava, přebije globál */
  display: flex;
  flex-direction: column;
  align-items: flex-end;        /* vnitřní bloky u pravého okraje */
}

/* Každý řádek s ikonou a textem držíme u pravého okraje */
section.section-bg#contact .contact-item {
  display: flex;
  justify-content: flex-end;    /* text + ikona doprava */
  align-items: center;
  text-align: right !important;
  gap: 20px;
  margin-bottom: 35px;
}

/* Text */
section.section-bg#contact .contact-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #2a200f;
  text-align: right !important;
}

section.section-bg#contact .contact-text,
section.section-bg#contact .contact-text a {
  font-size: 16px;
  color: #2a200f;
  text-align: right !important;
}

section.section-bg#contact .contact-text a:hover {
  color: #5a4a30;
  text-decoration: underline;
}

/* Ikona v kolečku */
section.section-bg#contact .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2a200f;
  color: #f7f7ec;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

section.section-bg#contact .icon-circle:hover {
  background-color: #3a2f1a;
}

/* Mapa */
section.section-bg#contact .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 8px;
}

/* Responsivita */
@media (max-width: 768px) {
  section.section-bg#contact .contact-grid {
    grid-template-columns: 1fr;
  }
  section.section-bg#contact .contact-info {
    align-items: center;
    text-align: center !important;
    justify-self: center;
  }
  section.section-bg#contact .contact-item {
    justify-content: center;
  }
}

/* ============================
   SUBPAGE ALL PAGES
   ============================ */

/* Světlé pozadí jen na subpage */
section.section-bg#body {
  background-color: #f7f7ec !important;
  padding: 180px 20px;
  color: #2a200f;
}

/* Nadpis */
section.section-bg#body .section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
  color: #2a200f;
}

/* Grid layout */
section.section-bg#body .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* GRID: text vlevo, obrázek vpravo */
.text-image-grid {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

/* Obrázek */
.text-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 20px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* Stylované odrážky */
section.section-bg#body ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

section.section-bg#body li {
  position: relative;
  padding-left: 28px;
  color: #2a200f;
}

section.section-bg#body li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: #a67c52;
  font-size: 24px;
  line-height: 1;
}

section.section-bg#body .text-column a {
  font-size: 16px;
  color: #2a200f;
  text-align: right !important;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

section.section-bg#body .text-column a:hover {
  color: #5a4a30;
  text-decoration: underline;
}

/* Mobilní verze */
@media (max-width: 900px) {
  .text-image-grid {
    grid-template-columns: 1fr;
  }

  .image-column {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {

    /* Skryj logo */
    footer .footer-left {
        display: none !important;
    }

    /* Celý footer jako jeden sloupec */
    footer .footer-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Menu pod sebe */
    footer .footer-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    footer .footer-menu ul li,
    footer .footer-menu ul a {
        width: 100% !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    /* Copyright + tvorba www pod menu */
    footer .footer-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* Zabránění přetečení */
    footer,
    footer * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
}