/* === PATIČKA MONSIEUR === */

/* Celková sekce */
#footerMain,
#contactSection,
#socialSection {
  background-color: #3c0012;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* --- KONTAKTNÍ SEKCE --- */
#contactSection {
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#contactSection h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.contactSection-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contactSection-single {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contactSection-single img {
  width: 22px;
  height: auto;
}

.contactSection-single a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.contactSection-single a:hover {
  opacity: 0.8;
}

/* --- SOCIÁLNÍ SÍTĚ --- */
#socialSection {
  text-align: center;
  padding: 50px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#socialSection h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.socialSection__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.socialSection__wrap a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.socialSection__wrap a img {
  width: 26px;
  height: auto;
}

.socialSection__wrap a:hover {
  opacity: 0.8;
}

/* --- HLAVNÍ PATIČKA (LINKY) --- */
#footerMain {
  text-align: left;
  padding: 60px 40px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-links-col h4 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  margin-bottom: 8px;
}

.footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
  color: #ffffff;
}

/* --- NEWSLETTER --- */
#newsletterSection {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.newsletterSection__title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletterSection__subTitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.newsletterSection__formGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background: none;
}

.newsletterSection__input {
  padding: 14px 16px;
  width: 60%;
  border: none;
  font-size: 1rem;
  background: #fff;
  color: #000;
}

.newsletterSection__btn {
  background: #f2f2f2;
  color: #000;
  border: none;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletterSection__btn:hover {
  background: #ffffff;
  color: #3c0012;
}

/* --- RESPONSIVITA --- */
@media screen and (max-width: 991px) {
  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .newsletterSection__input {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletterSection__formGroup {
    flex-direction: column;
  }

  #contactSection h2,
  #socialSection h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .contactSection-content {
    flex-direction: column;
  }
}
/* === VINOVÉ POZADÍ JEN V PATIČCE === */

/* společný základ */
#footerMain,
#contactSection,
#socialSection,
footer.page-footer,
footer#footer {
  background-color: #3c0012 !important;
  color: #ffffff !important;
}

/* obsah patičky zarovnaný s layoutem */
#footerMain,
#contactSection,
#socialSection {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px;
}

/* === SPOJENÁ PATIČKA — JEDNOTNÁ BARVA === */
footer.page-footer,
footer#footer {
  background-color: #3c0012 !important; /* sjednocený odstín */
  color: #ffffff !important;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* zruš vínové pozadí těla stránky */
body {
  background-color: #ffffff !important;
}
footer.page-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 15px;
}

#newsletterSection {
  background: #3c0012;
  box-shadow: none;
  margin: 0;
}
.newsletterSection__consent {
  color: #fff;
  font-size: 14px;
}

</style>
<style>
/* === KONTAKTNÍ BANNER — PLNÁ ŠÍŘKA === */
#contactBannerFull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #3c0012;
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.contactBannerFull__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}

.contactBannerFull__img img {
  max-height: 200px;
  height: auto;
  width: auto;
}

.contactBannerFull__content {
  flex: 1;
  text-align: left;
}

.contactBannerFull__content h2 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 25px;
}

.contactBannerFull__btn {
  background-color: #ffffff;
  color: #000000;
  text-transform: uppercase;
  padding: 14px 40px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contactBannerFull__btn:hover {
  background-color: #d4a24a;
  color: #ffffff;
}

/* === RESPONSIVITA === */
@media screen and (max-width: 991px) {
  .contactBannerFull__inner {
    flex-direction: column;
    text-align: center;
  }

  .contactBannerFull__img img {
    max-height: 150px;
    margin-bottom: 20px;
  }

  .contactBannerFull__content h2 {
    font-size: 1.7rem;
  }

  .contactBannerFull__btn {
    margin-top: 10px;
  }
}

/* === pridano naposledy === */

@media (max-width: 992px) {
  .contactBannerFull__content h2 {
    font-size: 22px !important; /* zmenšený text */
    line-height: 1.3;
  }
}

@media screen and (max-width: 575px) {
  .benefitBanner {
    padding-left: 20px;
  }
}


@media (max-width: 991px) {

  /* === Footer layout === */
  .footer-links-wrap {
    display: grid;
    gap: 5px !important; /* mezera mezi sekcemi */
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    text-align: center;
  }

  /* === Footer tlačítka === */
  .custom-footer h4 {
    width: 100%;
    background-color: #000 !important;
    color: #fff !important;
    padding: 20px 25px;
    border: none !important;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
  }

  /* === Mobilní zobrazení: šipky v patičce === */
@media (max-width: 991px) {
  .custom-footer h4::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 10px;
    position: relative;
    top: 3px;
    background: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z'/></svg>") no-repeat center;
    background-size: contain;
  }
}

.footer-links-icons .footer-icons {
  gap: 5px;
}

}

  /* === Newsletter sekce === */
  .newsletterSection__formGroup {
    background: none !important; /* odstraní bílý background */
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* input i button zarovnáme na střed */
  .newsletterSection__formGroup input,
  .newsletterSection__formGroup button {
    width: 100%;
    max-width: 100%;
  }
}

/* === Copyright + signature === */
#signature a {
  color: #fff !important;
  text-decoration: none;
}
#signature a:hover {
  color: #c7a97a; /* jemný kontrast při hoveru */
}

.footer-bottom::before {
  background: #000 !important;
}

/* === Platební ikonky === */
.footer-logos {
  display: flex;
  flex-wrap: wrap;              /* umožní zalomení do více řádků */
  justify-content: center;
  align-items: center;
  gap: 10px 20px;               /* mezery mezi ikonami */
  max-width: 260px;             /* šířka bloku, můžeš upravit */
  margin: 20px auto;
}

.footer-logos img {
  height: 28px;                 /* zvětšení ikon */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* volitelné – zesvětlí ikony na tmavém pozadí */
  transition: transform 0.2s ease;
}

.footer-logos img:hover {
  transform: scale(1.05);
}

/* === Responsivní úprava pro menší displeje === */
@media (max-width: 480px) {
  .footer-logos {
    gap: 8px 12px;
    max-width: 220px;
  }
  .footer-logos img {
    height: 26px;
  }
}



/* === HERO PRODUKT – doladění layoutu === */
.heroProductText__image {
  margin-bottom: -50px;
}

.heroProductText__content {
  padding-top: 380px;
  padding-bottom: 80px;
}

/* === Vrstvené pozadí pro sekci === */
#heroProductText {
  position: relative;
  margin-top: -380px;
  z-index: 5;
  background: transparent;
}

/* vytvoření druhé vrstvy pozadí pod obsahem */
#heroProductText::after {
  content: "";
  position: absolute;
  top: 380px; /* od výšky fotky */
  left: 0;
  width: 100%;
  height: calc(100% - 380px); /* vyplní zbytek sekce */
  background: #E4DAD0;
  z-index: -1; /* zůstane pod produktem */
}

/* pro jistotu fix na mobilní verzi */
@media (max-width: 992px) {
  .heroProductText__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #heroProductText::after {
    top: 200px;
    height: calc(100% - 200px);
  }
}



/* === NEWSLETTER – desktop layout === */
@media (min-width: 993px) {
  .newsletterSection__formGroup {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px; /* mezera mezi inputem a tlačítkem */
    max-width: 600px; /* můžeš upravit podle vzhledu */
    margin: 0 auto;
  }

  /* Input e-mailu */
  .newsletterSection__formGroup input[type="email"] {
    flex: 1 1 auto; /* roztáhne se */
    min-width: 400px; /* kontrola minimální šířky */
    padding: 14px 20px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 16px;
  }


  .newsletterSection__formGroup button {
  width: 100%;
  max-width: 150px;
}
}





/* === nova uprava-ÚPRAVA PATIČKY – MONSIEUR === */

/* Bílé odkazy v patičce */
.footer-links-col ul li a {
  color: #ffffff !important;
}

.footer-links-col ul li a:hover {
  color: #d4a24a !important; /* volitelné – zlatý hover */
}

/* Bílé nadpisy sekcí v patičce */
.footer-links-col h4 {
  color: #ffffff !important;
}

/* Bílé texty v celé patičce (pro jistotu) */
#footerMain,
#footerMain *,
footer.page-footer,
footer.page-footer * {
  color: #ffffff !important;
}

/* === Newsletter tlačítko === */
.newsletterSection__btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.newsletterSection__btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* === OPRAVA BARVY TEXTU V NEWSLETTER BUTTONU === */
#footerMain .newsletterSection__btn,
footer .newsletterSection__btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover efekt */
#footerMain .newsletterSection__btn:hover,
footer .newsletterSection__btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
}


/* === ÚPRAVA SEKCE SOCIÁLNÍCH SÍTÍ – MONSIEUR === */

#socialSection {
  text-align: center;
  display: flex;
  flex-direction: column; /* nadpis nad ikonami */
  justify-content: center;
  align-items: center;
  gap: 25px; /* mezera mezi nadpisem a ikonami */
  padding: 60px 20px 50px !important;
}

/* Nadpis – větší, výraznější, na samostatném řádku */
#socialSection h2 {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 15px;
  text-align: center;
}

/* Kontejner ikon */
.socialSection__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
}

/* Styl ikon a textů */
.socialSection__wrap a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.socialSection__wrap a:hover {
  opacity: 0.8;
}

/* Ikony */
.socialSection__wrap img {
  width: 26px;
  height: auto;
}



