/* ============================================================
   AYUSH HOLIDAYS — HERO SECTION CSS
   Matches the original design: navy #002451, orange #fc820c
   Fonts: Space Grotesk (headline), Plus Jakarta Sans (body)
   ============================================================ */

/* ── Reset helpers ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Hero wrapper ── */
.ah-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Gradient overlay (left heavy, matching original) */
.ah-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,36,81,0.92) 0%, rgba(0,36,81,0.55) 55%, rgba(0,36,81,0.10) 100%);
  z-index: 1;
}

/* ── Inner grid ── */
.ah-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
 margin-top: 100px;
}

/* ── LEFT COLUMN ── */
.ah-hero__left { color: #fff; }

/* Badge */
.ah-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252,130,12,0.18);
  border: 1px solid rgba(252,130,12,0.35);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffdcc6;
  margin-bottom: 28px;
}
.ah-hero__badge-star { color: #fc820c; font-size: 0.85rem; }

/* Headline */
.ah-hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

/* Subtext */
.ah-hero__subtext {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Buttons */
.ah-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.ah-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ah-btn--primary {
  background: linear-gradient(135deg, #fc820c 0%, #964900 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(252,130,12,0.30);
}
.ah-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(252,130,12,0.40);
  color: #fff;
}

.ah-btn--ghost {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
}
.ah-btn--ghost:hover {
  background: rgba(255,255,255,0.20);
  color: #fff;
  transform: translateY(-2px);
}

/* Tags row */
.ah-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ah-hero__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
}

/* ── RIGHT COLUMN — Glass Card ── */
.ah-hero__right { display: flex; justify-content: flex-end; }

.ah-hero__glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 32px 64px -15px rgba(0,36,81,0.25);
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Feature row */
.ah-hero__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ah-hero__feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
}
.ah-hero__feature-icon--orange { background: #fc820c; }
.ah-hero__feature-icon--navy   { background: #002451; }

.ah-hero__feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 6px;
}
.ah-hero__feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}

/* ── Floating WhatsApp Button ── */
.ah-wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 56px;
}
.ah-wa-btn:hover {
  max-width: 180px;
  padding: 14px 22px 14px 14px;
  gap: 10px;
}
.ah-wa-btn__label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  width: 0;
  overflow: hidden;
}
.ah-wa-btn:hover .ah-wa-btn__label {
  opacity: 1;
  width: auto;
}

/* ── Navigation Styles ── */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 36, 81, 0.05);
    padding: 16px 0;
    position: fixed; /* Changed from sticky to fixed for better reliability */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 32px 64px -15px rgba(0, 36, 81, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem; /* Increased from 1.25rem */
    font-weight: 900;
    color: #002451;
    letter-spacing: -0.05em;
    text-transform: none;
}

/* Hide redundant Home menu item and its container to remove empty space */
.ah-desktop-only li:has(a[href$="/"]:not(.logo-text)),
.ah-mobile-drawer li:has(a[href$="/"]:not(.logo-text)),
.menu-area li:has(a[href$="/"]:not(.logo-text)),
.menu-item-home,
.page_item_home,
.ah-desktop-only a[href$="/"]:not(.logo-text),
.ah-mobile-drawer a[href$="/"]:not(.logo-text),
.menu-area a[href$="/"]:not(.logo-text) {
    display: none !important;
}
/* Ensure logo remains visible */
.logo-area a, .logo-text {
    display: inline-block !important;
}

.menu-area ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.menu-area a {
    text-decoration: none;
    color: rgba(0, 36, 81, 0.7);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

/* Animated Underline Effect */
.menu-area a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ea580c;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-area li.current-menu-item a,
.menu-area a:hover {
    color: #ea580c;
}

.menu-area li.current-menu-item a::after,
.menu-area a:hover::after {
    width: 100%;
}

.menu-area li.current-menu-item a {
    font-weight: 700;
}

.nav-wa-btn {
    background: #002451;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 9999px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s;
    display: inline-block;
}

.nav-wa-btn:hover {
    background: #1a3a6b;
    transform: scale(0.95);
}

/* ── Burger Button ── */
.ah-burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 2100; /* Increased to be above the drawer (2000) */
}

.ah-burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #002451;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* ── Mobile Off-canvas Drawer ── */
.ah-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.ah-mobile-drawer.is-active {
    right: 0;
}

.ah-mobile-drawer__header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 36, 81, 0.05);
}

.ah-mobile-drawer__content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.ah-mobile-drawer__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ah-mobile-drawer__content li {
    margin-bottom: 24px;
}

.ah-mobile-drawer__content a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #002451;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.ah-mobile-drawer__content a:hover {
    color: #ea580c;
}

.ah-mobile-drawer__footer {
    padding: 32px;
    border-top: 1px solid rgba(0, 36, 81, 0.05);
}

.nav-wa-btn--full {
    display: block !important;
    text-align: center;
    width: 100%;
    color: #ffffff !important; /* Force white text */
}

/* ── Overlay ── */
.ah-mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 36, 81, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ah-mobile-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ── Burger Animation ── */
.ah-burger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.ah-burger-btn.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ah-burger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ah-desktop-only { display: none !important; }
  .ah-burger-btn { display: flex; }

  .ah-hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    text-align: center;
  }
  .ah-hero__right { display: none; }
  .ah-hero__badge { margin: 0 auto 24px; }
  .ah-hero__subtext { margin: 0 auto 32px; }
  .ah-hero__buttons { justify-content: center; }
  .ah-hero__tags { justify-content: center; }
}
