/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "centaur-regular";
  src: url("../fonts/centaur-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CeraGodrejInterio-Regular";
  src: url("../fonts/CeraGodrejInterio-Regular.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* --- EB Garamond --- */
@font-face {
  font-family: "EB Garamond";
  src: url("fonts/Cormorant_Garamond,EB_Garamond,Montserrat/EB_Garamond/static/EBGaramond-Regular.ttf")
    format("ttf");
  font-weight: 400;
  font-style: normal;
}

/* --- Montserrat --- */
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Cormorant_Garamond,EB_Garamond,Montserrat/Montserrat/static/Montserrat-Regular.ttf")
    format("ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Cormorant_Garamond,EB_Garamond,Montserrat/Montserrat/static/Montserrat-Bold.ttf")
    format("ttf");
  font-weight: 700;
  font-style: normal;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: rgb(237, 226, 212);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
.kicker_span {
  font-family: "centaur-regular", serif;
}

a,
button,
p,
span,
h3,
h4,
tr,
label,
li {
  font-family: "CeraGodrejInterio-Regular", serif;
}

/* Header Styles */
#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(0.4px);
  background-color: rgba(126, 90, 37, 0.18);
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}
#fixed-header.scrolled-section2 {
  background-color: rgb(126, 90, 37);
}
.logo {
  height: 45px;
  width: auto;
}

.nav__links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-evenly;
}

.nav-item {
  margin: 0 20px;
}

.nav-link {
  text-decoration: none;
  color: rgb(237, 226, 212);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #333;
}

#contact-us {
  background: rgb(237, 226, 212);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

#contact-us:hover {
  background: white;
}

/* Main Banner Styles */
.main-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.banner-content {
  width: 100%;
  height: 100%;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.whatsapp-fab {
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.whatsapp-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #06b257, #059e4a);
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

/* slightly lift on hover/focus */
.whatsapp-fab__link:hover,
.whatsapp-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.whatsapp-fab__link:hover .whatsapp-tooltip,
.whatsapp-fab__link:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* ---------------- Banner left overlay ---------------- */
.main-banner {
  position: relative;
  overflow: hidden;
}

/* Use --header-height to position the overlay below the fixed header.
   Default to 72px; adjust if your header has a different height. */
:root {
  --header-height: 72px;
}

/* Overlay container */
.banner-overlay-left {
  position: absolute;
  top: calc(var(--header-height, 72px));
  left: 0;
  width: 25%; /* exactly one quarter of the banner width */
  max-width: 360px; /* optional cap for very large screens */
  box-sizing: border-box;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: rgba(10, 10, 10, 0.45); /* semi-transparent for readability */
  color: #fff;
  border-radius: 0 8px 8px 0;
  z-index: 20; /* on top of the banner image */
  max-height: calc(
    100% - var(--header-height, 72px)
  ); /* never exceed banner height */
  overflow: hidden;
}

/* If banner is shorter or window smaller, allow vertical scroll inside overlay */
.banner-overlay-left .banner-overlay__middle {
  overflow: hidden;
}

/* top kicker */
.banner-overlay__top h3 {
  /* color: rgb(126, 90, 37); */
  font-size: x-large;
  font-weight: bold;
  text-align: center;
}

.hero-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  font-size: 14px;
  align-items: center;
}
.hero-card__list li {
  margin: 5px 0;
  text-align: left;
  font-size: large;
}
.banner-overlay__top .banner-overlay__kicker {
  display: inline-block;
  width: 100%; /* fit to content, not full width */
  background: linear-gradient(90deg, #f8d9a8 0%, #f1bf6a 40%, #c78a2b 100%);
  color: #241905; /* dark, warm text for contrast */
  padding: 0.6rem 1rem; /* thicker background (more "plush" area) */
  font-weight: 800; /* heavier font */
  font-size: 1.05rem; /* slightly larger for emphasis */
  border-radius: 10px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(9, 7, 6, 0.18); /* richer shadow */
  text-decoration: none;
  text-align: center;
  margin: 10px 0;
  -webkit-font-smoothing: antialiased;
  border: 1px solid rgba(255, 255, 255, 0.12); /* subtle light border to add depth */
  letter-spacing: 0.2px;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-position 0.6s ease;
  background-size: 200% 100%; /* allows a subtle shift on hover */
  background-position: left center;
  cursor: pointer;
}

.banner-overlay__kicker:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(199, 138, 43, 0.22);
  filter: brightness(1.03);
}

/* middle section with animated H3s */
.banner-overlay__middle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 2px;
  align-items: flex-start;
  width: 100%;
}

/* the animated lines */
.banner-overlay__middle .animated-line {
  margin: 0;
  display: inline-block;
  font-size: 1.05rem;
  width: 100%;
  text-align: center;
  padding: 6px 12px; /* thicker background so the pill reads clearly */
  font-weight: 700;
  line-height: 1;
  color: #fff;

  /* warm, translucent gradient background that matches the banner palette */
  background: linear-gradient(
    90deg,
    rgba(248, 217, 168, 0.16) 0%,
    rgba(241, 191, 106, 0.12) 50%,
    rgba(199, 138, 43, 0.08) 100%
  );

  /* soft frosted effect + subtle border to lift from dark overlay */
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  /* layered shadow for depth */
  box-shadow: 0 8px 22px rgba(47, 33, 12, 0.12),
    0 20px 46px rgba(10, 8, 6, 0.12);

  /* animation + positioning preserved */
  opacity: 0.95;
  transform: translateY(6px);
  animation-name: bannerFadeUp;
  animation-duration: 2.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-position 0.4s ease;
}

/* hover/focus to subtly emphasize the line */
.banner-overlay__middle .animated-line:hover,
.banner-overlay__middle .animated-line:focus {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 12px 28px rgba(47, 33, 12, 0.18),
    0 30px 72px rgba(10, 8, 6, 0.18);
  cursor: default;
}

/* stagger delays so lines animate in sequence */
.banner-overlay__middle .animated-line:nth-child(1) {
  animation-delay: 0s;
}
.banner-overlay__middle .animated-line:nth-child(2) {
  animation-delay: 0.55s;
}
.banner-overlay__middle .animated-line:nth-child(3) {
  animation-delay: 1.1s;
}
.banner-overlay__middle .animated-line:nth-child(4) {
  animation-delay: 1.65s;
}

/* animation keyframes: fade in & move up, then soften out */
@keyframes bannerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0.95;
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(4px);
  }
}

.banner-overlay__note p {
  font-size: x-small;
  text-align: center;
}

.banner-overlay_price-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.banner-overlay_price-block {
  display: flex;
  justify-content: center; /* vertical centering inside the block */
  align-items: center; /* center label & price horizontally */
  gap: 6px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 238, 205, 0.1),
    rgba(255, 230, 180, 0.06)
  );
  border: 1px solid rgba(255, 223, 158, 0.12);
  backdrop-filter: blur(4px) saturate(120%);
  box-shadow: 0 10px 30px rgba(199, 138, 43, 0.08);
  min-width: 150px;
  box-sizing: border-box;
}

/* small uppercase label */
.banner-overlay__price-label {
  height: 100%;
}
.banner-overlay__price-label span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* main price — big, warm, with glow */
.banner-overlay__price span {
  display: inline-block;
  font-size: 1.18rem;
  font-weight: 900;
  color: #f3c46b; /* warm gold */
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 223, 158, 0.14),
    rgba(243, 196, 107, 0.08)
  );
  text-shadow: 0 4px 18px rgba(243, 196, 107, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Optional stronger emphasis (hover) */
.banner-overlay_price-block:hover .banner-overlay__price span {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(243, 196, 107, 0.3);
}

.banner-overlay__bottom .banner-cta {
  margin-top: 15px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* visuals */
  background: linear-gradient(180deg, #f9e2b8 0%, #f3c46b 50%, #d59a2a 100%);
  color: #2b2b20;
  border: none;
  padding: 12px 18px;
  min-width: 150px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(199, 138, 43, 0.18);
  cursor: pointer;

  /* smooth motion */
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.12s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hover: lift + stronger glow */
.banner-overlay__bottom .banner-cta:hover,
.banner-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(199, 138, 43, 0.22);
  filter: brightness(1.03);
}

/* Active / pressed state */
.banner-overlay__bottom .banner-cta:active,
.banner-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  filter: brightness(0.99);
}

/* Accessible focus ring */
.banner-overlay__bottom .banner-cta:focus-visible,
.banner-cta:focus-visible {
  outline: 3px solid rgba(243, 196, 107, 0.28);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Make the CTA read well on dark overlays (subtle inner highlight) */
.banner-overlay__bottom .banner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  mix-blend-mode: overlay;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  * {
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Remove default margins/padding that might cause spacing issues */
  body {
    margin: 0;
    padding: 0;
  }

  /* Ensure all sections use full width */
  section {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  /* Header adjustments */
  #fixed-header {
    padding: 16px 30px;
  }

  #fixed-header {
    padding: 6px 15px;
    align-items: center;
    gap: 8px;
  }

  .logo {
    height: 20px;
    margin-bottom: 3px;
  }

  .nav__links ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  .banner-overlay-left {
    display: none;
  }

  .main-banner {
    height: 30vh; /* Further reduce for tablets */
    min-height: 200px;
  }

  .banner-image {
    object-position: center top; /* Focus on upper center portion */
    object-fit: fill;
  }

  .banner-content {
    display: flex;
    align-items: center; /* Center the image vertically in container */
  }

  /* WhatsApp fab positioning */
  .whatsapp-fab {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-fab__link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .whatsapp-tooltip {
    right: 60px;
    font-size: 12px;
    padding: 6px 8px;
  }

  #contact-us {
    padding: 8px 16px; /* Reduced padding */
    font-size: 0.85rem;
    min-width: auto; /* Remove minimum width */
  }
}

/* Tablet - 900px and below */
@media (max-width: 900px) {
  /* Header becomes horizontally centered layout */
  #fixed-header {
    padding: 6px 15px;
    align-items: center;
    gap: 8px;
  }

  .logo {
    height: 20px;
    margin-bottom: 3px;
  }

  .nav__links ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  #contact-us {
    padding: 5px 12px;
    font-size: 0.8rem;
    order: 3;
    margin-top: 4px;
  }

  /* Ensure banner overlay is hidden */
  .banner-overlay-left {
    display: none !important;
  }

  .main-banner {
    height: 30vh; /* Further reduce for tablets */
    min-height: 200px;
  }

  .banner-image {
    object-position: center top; /* Focus on upper center portion */
    object-fit: fill;
  }

  .banner-content {
    display: flex;
    align-items: center; /* Center the image vertically in container */
  }

  /* WhatsApp fab positioning */
  .whatsapp-fab {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-fab__link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .whatsapp-tooltip {
    right: 60px;
    font-size: 12px;
    padding: 6px 8px;
  }
}

/* Mobile Large - 520px and below */
@media (max-width: 520px) {
  /* Header stacked vertically with tighter spacing */
  #fixed-header {
    padding: 4px 10px;
    align-items: center;
    gap: 3px;
  }

  .logo {
    height: 15px;
    margin-bottom: 2px;
  }

  .nav__links ul {
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0 2px;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 2px 4px;
  }

  #contact-us {
    padding: 3px 8px;
    font-size: 0.65rem;
    margin-top: 2px;
  }

  /* Ensure banner overlay is hidden */
  .banner-overlay-left {
    display: none !important;
  }

  /* WhatsApp fab smaller */
  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-fab__link {
    width: 45px;
    height: 45px;
  }

  .whatsapp-icon {
    width: 18px;
    height: 18px;
  }

  .whatsapp-tooltip {
    right: 55px;
    font-size: 11px;
    padding: 4px 6px;
  }
}

/* Mobile Small - 375px and below */
@media (max-width: 375px) {
  /* Most compact header layout */
  #fixed-header {
    padding: 4px 10px;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .logo {
    height: 24px;
    margin-bottom: 1px;
  }

  .nav__links ul {
    gap: 2px;
    justify-content: center;
  }

  .nav-item {
    margin: 0 2px;
  }

  .nav-link {
    font-size: 0.65rem;
    padding: 2px 4px;
  }

  #contact-us {
    padding: 3px 8px;
    font-size: 0.65rem;
    order: 3;
    margin-top: 1px;
  }

  /* Ensure banner overlay is hidden */
  .banner-overlay-left {
    display: none !important;
  }

  /* WhatsApp fab smallest */
  .whatsapp-fab {
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-fab__link {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon {
    width: 16px;
    height: 16px;
  }

  .whatsapp-tooltip {
    display: none; /* Hide tooltip on very small screens */
  }
}

/* Typography scaling for all breakpoints */
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  body {
    font-size: 13px;
  }
}

.fake-recaptcha {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #f9f9f9;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.recaptcha-box input {
  display: none;
}

.recaptcha-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #b5b5b5;
  border-radius: 2px;
  background: #fff;
  margin-right: 12px;
  position: relative;
}

.recaptcha-box input:checked + .recaptcha-checkbox {
  background: #1a73e8;
  border-color: #1a73e8;
}

.recaptcha-box input:checked + .recaptcha-checkbox::after {
  content: "✓";
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 4px;
  top: -1px;
}

.recaptcha-text {
  font-size: 15px;
  color: #444;
}

.recaptcha-logo {
  width: 30px;
  position: absolute;
  right: 8px;
  opacity: 0.8;
}

.robot-error {
  color: red;
  font-size: 12px;
  margin-top: 6px;
}
