/* ═══════════════════════════════════════════════
   AAMRAI EVENTS & CELEBRATIONS
   Premium Resort + Authentic Indian Warmth
   Enhanced Cinematic & Luxurious Presentation
   ═══════════════════════════════════════════════ */

:root {
    --resort-cream: #FDF9F3;
    --resort-beige: #F5EBDD;
    --resort-brown: #5C3D2E;
    --resort-gold: #C5A059;
    --resort-green: #3E5C45;
    --soft-shadow: 0 12px 40px rgba(92, 61, 46, 0.08);
    --cinematic-shadow: 0 20px 60px rgba(92, 61, 46, 0.12);
    --luxury-radius: 18px;

    /* GLOBAL NAVBAR HEIGHTS */
    --nav-height: 88px;
    --nav-height-mobile: 80px;
    --nav-height-scrolled: 70px;
}

/* --- GLOBAL REFINEMENTS --- */
body {
    background-color: var(--resort-cream);
}

/* --- NAVBAR REFINEMENTS --- */
.navbar {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2500;
    height: var(--nav-height);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: var(--nav-height-scrolled);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-back-arrow {
    color: var(--resort-brown);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-back-arrow:hover {
    transform: translateX(-3px);
}

.nav-logo-img {
    height: 60px; /* Standardized height */
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 48px;
}

@media (max-width: 768px) {
    .navbar {
        height: var(--nav-height-mobile);
    }
    .nav-logo-img {
        height: 52px;
    }
}

/* --- HERO SECTION --- */
.events-hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('assets/event 2/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    margin-top: var(--nav-height); /* Matches navbar height */
    z-index: 1;
}

@media (max-width: 768px) {
    .events-hero {
        margin-top: var(--nav-height-mobile); /* Matches mobile navbar height */
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(40, 22, 12, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 5%;
}

.events-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-desc-desktop {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: block;
}

@media (max-width: 991px) {
    .hero-desc-desktop, .hero-ctas-desktop {
        display: none !important;
    }
}

/* --- HERO BUTTONS --- */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-event-primary {
    background: var(--resort-beige);
    color: var(--resort-brown);
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(92, 61, 46, 0.15);
}

.btn-event-primary:hover {
    background: var(--pure-white);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(92, 61, 46, 0.2);
}

.btn-event-whatsapp {
    background: #25D366;
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-event-whatsapp:hover {
    background: #1da851;
    transform: translateY(-4px);
}

/* --- MOBILE HERO DETAILS --- */
.mobile-hero-details {
    display: none;
    padding: 60px 8%;
    background: white;
    text-align: center;
    border-bottom: 1px solid rgba(92, 61, 46, 0.05);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-hero-details p {
    font-size: 1.1rem;
    color: #665c55;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .mobile-hero-details {
        display: block;
    }
    .events-hero {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .events-hero {
        height: 50vh;
        min-height: 300px;
    }
    .mobile-hero-details {
        padding: 40px 6%;
    }
}

/* --- INTRO SECTION --- */
.events-intro {
    padding: 120px 10%;
    text-align: center;
    background: var(--resort-cream);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--resort-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--resort-brown);
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.15rem;
    color: #665c55;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   EVENT SHOWCASE — Premium Cinematic Cards
   ═══════════════════════════════════════════════ */
.event-showcase {
    position: relative;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) .showcase-text {
    direction: ltr;
}

/* --- Showcase Image — Cinematic Treatment --- */
.showcase-img {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

/* Cinematic gradient overlay on every image */
.showcase-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(92, 61, 46, 0.08) 0%,
        transparent 40%,
        transparent 60%,
        rgba(92, 61, 46, 0.12) 100%
    );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.showcase-item:hover .showcase-img::after {
    opacity: 0.4;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s ease;
    filter: brightness(0.97) saturate(1.05);
    will-change: transform;
}

.showcase-item:hover .showcase-img img {
    transform: scale(1.06);
    filter: brightness(1.02) saturate(1.1);
}

/* --- Showcase Text — Refined Typography --- */
.showcase-text {
    padding: 80px 12%;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Subtle gold accent line */
.showcase-text::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--resort-gold), transparent);
    border-radius: 2px;
}

.showcase-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--resort-brown);
    margin-bottom: 20px;
    margin-top: 15px;
    line-height: 1.15;
}

.showcase-text p {
    font-size: 1.05rem;
    color: #665c55;
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--resort-brown);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.showcase-features li:hover {
    transform: translateX(4px);
}

.showcase-features li i {
    color: var(--resort-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* --- Alternating Background Tones for Depth --- */
.showcase-item:nth-child(odd) .showcase-text {
    background: #FFFFFF;
}

.showcase-item:nth-child(even) .showcase-text {
    background: #FDFBF8;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE CARDS — Refined
   ═══════════════════════════════════════════════ */
.why-aamrai {
    padding: 120px 5%;
    background: var(--resort-beige);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.why-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer accent on hover */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--resort-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cinematic-shadow);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--resort-gold);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.why-card:hover i {
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.4rem;
    color: var(--resort-brown);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: #776e66;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   INQUIRY SECTION — Premium Form
   ═══════════════════════════════════════════════ */
.event-inquiry {
    padding: 120px 5%;
    background: var(--resort-cream);
}

.inquiry-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--cinematic-shadow);
}

.inquiry-info {
    padding: 60px;
    background: var(--resort-brown);
    color: white;
}

.inquiry-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.inquiry-info p {
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-gold);
    transition: background 0.3s ease;
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.18);
}

.inquiry-form {
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--resort-brown);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2d6cc;
    border-radius: 10px;
    font-size: 1rem;
    background: #faf8f6;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--resort-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--resort-brown);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: var(--resort-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — All Breakpoints
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 5%;
    }
    .showcase-item {
        grid-template-columns: 1fr;
    }
    .showcase-item:nth-child(even) {
        direction: ltr;
    }
    .showcase-img {
        min-height: 400px;
    }
    .inquiry-container {
        grid-template-columns: 1fr;
    }
    .showcase-text::before {
        top: 40px;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 70vh;
    }
    .showcase-text {
        padding: 60px 8%;
    }
    .showcase-text::before {
        left: 8%;
        top: 35px;
    }
    .showcase-features {
        grid-template-columns: 1fr;
    }
    .inquiry-info,
    .inquiry-form {
        padding: 40px 30px;
    }
    .showcase-img {
        min-height: 320px;
    }
    .events-intro {
        padding: 80px 8%;
    }
    .why-aamrai {
        padding: 80px 5%;
    }
    .event-inquiry {
        padding: 80px 5%;
    }
}

@media (max-width: 480px) {
    .events-hero h1 {
        font-size: 2.2rem;
    }
    .showcase-text h3 {
        font-size: 1.8rem;
    }
    .showcase-text {
        padding: 50px 6%;
    }
    .showcase-text::before {
        left: 6%;
        top: 30px;
        width: 40px;
    }
    .showcase-img {
        min-height: 280px;
    }
    .inquiry-info,
    .inquiry-form {
        padding: 30px 20px;
    }
    .btn-event-primary,
    .btn-event-whatsapp {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}