/* === FIX: Barva promo textu na desktopu === */
header#header .promo-heading,
header#header .promo-heading h2,
header#header .promo-heading p,
header#header .promo-heading .promo-code {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* === Oprava – větší ilustrace v banneru "Máte dotazy?" === */
#contactBannerFull {
  background-color: #400019;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0;
  margin-bottom: 60px;
  min-height: 240px; /* výška banneru */
  display: flex;
  align-items: center;
}

.contactBannerFull__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.contactBannerFull__img {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.contactBannerFull__img img {
  height: 260px; /* zvětší ilustraci */
  width: auto;
  max-width: none;
  transform: translateY(10px); /* trochu dolů pro lepší zarovnání */
}

.contactBannerFull__content {
  flex: 1 1 auto;
  padding-left: 20px;
}

.contactBannerFull__content h2 {
  font-family: 'Akkurat', 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.contactBannerFull__btnWrap {
  flex-shrink: 0;
}

.contactBannerFull__btn {
  background: #fff;
  color: #000;
  font-family: 'Akkurat', 'Afacad', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 40px;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contactBannerFull__btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* === Mobilní === */
@media (max-width: 768px) {
  #contactBannerFull {
    padding: 40px 0;
  }

  .contactBannerFull__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .contactBannerFull__img img {
    height: 160px;
    transform: none;
  }
}

/* === MONSIEUR – Tři čtvercové kategorie === */

.homepageCategories {
  padding: 60px 0;
  background: #fff;
}

.homepageCategories__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 40px;
}

.homepageCategory {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--bg) center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.homepageCategory::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  transition: opacity 0.4s ease;
}

.homepageCategory:hover {
  transform: scale(1.02);
}

.homepageCategory:hover::after {
  opacity: 0.4;
}

.homepageCategory__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.homepageCategory__overlay img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.homepageCategory__overlay h3 {
  font-family: 'Akkurat', 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

/* === Mobilní === */
/*
@media (max-width: 900px) {
  .homepageCategories__inner {
    grid-template-columns: 1fr;
    gap: 24px;

  }

  .homepageCategory__overlay img {
    width: 60px;
  }
}
*/

/* === MONSIEUR – sekce 3 foto ikony === */
.homepageCategories .homepageCategory__overlay h3 {
  color: #ffffff !important;
}

.homepageCategories .homepageCategory__overlay {
  color: #ffffff !important;
}

/* pro jistotu i nadpis a hover */
.homepageCategories .homepageCategory:hover h3 {
  color: #ffffff !important;
}
