/* =========================================================
   HERO SECTION (Home page)
   ========================================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brand-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.7)),
                    url('/images/homepage.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  max-width: 900px;
  padding: 0 1rem;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(214, 40, 40, 0.85);
  color: var(--brand-white);
  padding: 0.4rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--brand-white);
  margin-bottom: 1rem;
  line-height: 1.05;
  font-weight: 700;
}
.hero-title .accent {
  color: var(--brand-red);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--brand-gray-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--brand-white);
  border-radius: 15px;
  z-index: 2;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--brand-white);
  border-radius: 2px;
  animation: scrollMouse 1.5s ease-in-out infinite;
}
@keyframes scrollMouse {
  0%, 100% { top: 8px; opacity: 1; }
  50%      { top: 30px; opacity: 0.3; }
}

/* =========================================================
   BOOKING WIDGET (overlay on hero / standalone)
   ========================================================= */
.booking-widget {
  background: var(--brand-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.booking-widget .widget-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand-black);
  margin-bottom: 1rem;
  text-align: center;
}
.booking-widget .row > [class*='col'] {
  margin-bottom: 0.75rem;
}
.booking-widget .form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-gray);
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}
.booking-widget .btn-search {
  background: var(--brand-red);
  color: var(--brand-white);
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.booking-widget .btn-search:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* =========================================================
   HOME — About teaser
   ========================================================= */
.about-teaser .about-img-wrap {
  position: relative;
}
.about-teaser .about-img-wrap img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.about-teaser .about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--brand-red);
  border-left: 4px solid var(--brand-red);
}
.about-teaser .about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--brand-red);
  border-right: 4px solid var(--brand-red);
}
.years-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--brand-red);
  color: var(--brand-white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.years-badge .num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.years-badge .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================================
   Feature highlights row
   ========================================================= */
.feature-grid .feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--brand-white);
  border-radius: 8px;
  height: 100%;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.feature-grid .feature-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-grid .feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-grid .feature-card p {
  color: var(--brand-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  background: linear-gradient(rgba(26,26,26,0.85), rgba(214,40,40,0.85)),
              url('https://lh3.googleusercontent.com/d/15pWWLSjxNajFNJls4Wkdpey02IQBstr3') center/cover fixed;
  color: var(--brand-white);
  padding: 5rem 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--brand-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
