/* Bodavite Premium Wedding Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #722f37; /* Merlot/Burgundy */
    --primary-light: #9e4751;
    --secondary-color: #fdfbf7; /* Ivory/Cream */
    --accent-color: #d4af37; /* Gold */
    --text-dark: #2c2c2c;
    --text-light: #555555;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -----------------------
   Mobile Sticky Bar 
------------------------ */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.sticky-btn-primary, .sticky-btn-secondary {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.sticky-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    margin-left: 10px;
}

.sticky-btn-secondary {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-dark);
}

@media (min-width: 769px) {
    .mobile-sticky-bar {
        display: none;
    }
}


/* -----------------------
   Header & Nav 
------------------------ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    line-height: 0;
}

.logo img {
    display: block;
    height: 58px;
    width: auto;
    max-height: 58px;
    object-fit: contain;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

header.scrolled .nav a {
    color: var(--text-dark);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Mobile Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

header.scrolled .mobile-nav-toggle span,
body.menu-open .mobile-nav-toggle span {
    background-color: var(--primary-color);
}

/* Hamburger Animation */
.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* -----------------------
   Hero Section 
------------------------ */
.hero {
    /* height: 100vh;
    min-height: 600px;  */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 100px; /* Account for fixed header (58px logo + 40px padding) */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(114, 47, 55, 0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
}

.btn-primary:hover {
    background: #5a232b;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.5);
}

/* -----------------------
   Features 
------------------------ */
.features {
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--white);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* -----------------------
   About 
------------------------ */
.about {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/meetings-bg.png') center/cover no-repeat; /* Fallback if exists */
    opacity: 0.1;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 42px;
}

.about-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* -----------------------
   Packages (Professional & Psychology-Driven)
------------------------ */
.packages {
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f6f2 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 60px;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid #f5f5f5;
    overflow: hidden;
}

/* Psychology: Premium card stands out through elevation and golden accent */
.package-card.premium {
    background: linear-gradient(to bottom, #fffef9 0%, var(--white) 100%);
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.25), 0 4px 16px rgba(0,0,0,0.08);
    transform: scale(1.06);
    z-index: 2;
}

/* Subtle hover effect for all cards */
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-light);
}

.package-card.premium:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 20px 56px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0,0,0,0.12);
}

/* Popular tag with icon */
.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c29d2e 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-tag i {
    font-size: 11px;
}

/* Package Tier Badge - Subtle & Professional */
.package-tier-badge {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.package-tier-badge i {
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.8;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-tier-badge span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.package-tier-badge.signature i {
    color: var(--primary-light);
}

.package-tier-badge.royal {
    background: linear-gradient(135deg, #fffef9 0%, #ffffff 100%);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.package-tier-badge.royal i {
    color: var(--accent-color);
    opacity: 1;
}

.package-tier-badge.royal span {
    color: var(--accent-color);
}

/* Package Header */
.package-header {
    text-align: center;
    padding: 30px 30px 25px;
    background: var(--white);
}

.package-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.package-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Package Inheritance Badge */
.package-inheritance {
    background: #f8f9fa;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-inheritance i {
    color: var(--accent-color);
    font-size: 14px;
}

/* Package Features List */
.package-features {
    padding: 30px;
    flex-grow: 1;
    background: var(--white);
}

.package-features li {
    margin-bottom: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-features span {
    flex: 1;
}

/* Special icons for different features */
.package-features .fa-clock-o,
.package-features .fa-bolt,
.package-features .fa-refresh {
    color: var(--accent-color);
}

/* CTA Wrapper */
.package-cta-wrapper {
    padding: 0 30px 35px;
    background: var(--white);
}

.package-cta-wrapper .btn {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    padding: 16px;
    letter-spacing: 1.5px;
}

.package-support {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-support i {
    color: var(--primary-color);
    font-size: 14px;
}

.royal-support {
    color: var(--accent-color);
    font-weight: 600;
}

.royal-support i {
    color: var(--accent-color);
}

/* Trust Bar - Psychology: Social proof & credibility */
.packages-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item i {
    font-size: 18px;
    color: var(--accent-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* -----------------------
   Gallery 
------------------------ */
.gallery {
    padding-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 cols */
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 0.8; /* Slightly taller for portraits */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* -----------------------
   Contact 
------------------------ */
.contact {
    background: var(--white);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--shadow-strong);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    margin-right: 25px;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    flex: 2;
    min-width: 300px;
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 18px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* -----------------------
   Footer 
------------------------ */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 50px 0;
}

footer p {
    font-size: 14px;
    letter-spacing: 0.5px;
}


/* =========================================
   RESPONSIVE / MOBILE BUSINESS LOGIC
   ========================================= */

@media (max-width: 768px) {
    /* -- Navigation -- */
    .mobile-nav-toggle {
        display: flex;
    }

    .logo img {
        height: 46px;
        max-height: 46px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%; /* Don't cover fully to allow clicking out */
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 80px 40px;
        transition: var(--transition);
        display: block; /* Override flex */
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav a {
        color: var(--text-dark);
        font-size: 20px;
        display: block; /* larger hit area */
        padding: 10px 0;
    }

    /* -- Hero -- */
    section {
        padding: 60px 0; /* reduce padding */
    }
    
    .hero {
        text-align: center;
        padding-top: 90px; /* Account for fixed header (46px logo + 40px padding) */
        height: auto;
        /* min-height: 100vh; */
    }

    .hero-content {
        padding: 40px 20px;
        margin-top: 0; /* Removed excessive margin - padding-top on hero handles spacing */
        background: rgba(0, 0, 0, 0.3); /* Darker overlay for better text contrast on mobile */
        backdrop-filter: blur(5px);
    }
    
    .hero-content h1 {
        font-size: 42px; /* Smaller header */
    }
    
    .hero-content p {
        font-size: 16px;
        color: rgba(255, 255, 255, 1);
    }

    .hero .buttons {
        margin-bottom: 20px;
    }

    .hero .btn {
        width: 100%; /* Full width button for thumbs */
        padding: 18px 0;
    }


    /* -- Cards & Features -- */
    .feature-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding: 30px;
    }

    .feature-icon {
        margin-right: 20px;
        margin-bottom: 0;
        font-size: 30px;
    }

    /* -- Packages -- */
    .packages-grid {
        gap: 25px;
    }

    .package-card {
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .package-card.premium {
        transform: none; /* remove desktop scale */
        border-width: 3px; /* visually emphasize border */
    }

    .package-card.premium:hover {
        transform: translateY(-8px);
    }

    .popular-tag {
        top: 15px;
        right: 15px;
        font-size: 9px;
        padding: 5px 12px;
    }

    .popular-tag i {
        font-size: 10px;
    }

    .package-tier-badge {
        padding: 25px 20px 15px;
        gap: 10px;
    }

    .package-tier-badge i {
        font-size: 18px;
        width: 20px;
        height: 20px;
    }

    .package-tier-badge span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .package-header {
        padding: 25px 20px 20px;
    }

    .package-header h3 {
        font-size: 28px;
    }

    .package-tagline {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .package-description {
        font-size: 14px;
    }

    .package-inheritance {
        padding: 10px 20px;
        font-size: 12px;
        gap: 6px;
    }

    .package-inheritance i {
        font-size: 13px;
    }

    .package-features {
        padding: 25px 20px;
    }

    .package-features li {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .package-features i {
        font-size: 13px;
        margin-right: 10px;
    }

    .package-cta-wrapper {
        padding: 0 20px 30px;
    }

    .package-cta-wrapper .btn {
        padding: 15px;
        font-size: 13px;
    }

    .package-support {
        font-size: 12px;
    }

    .packages-trust-bar {
        gap: 20px;
        padding: 30px 15px;
    }

    .trust-item {
        font-size: 12px;
        gap: 8px;
    }

    .trust-item i {
        font-size: 16px;
    }

    /* -- Gallery -- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 10px;
    }
    
    .gallery-overlay {
        opacity: 1; /* Always show text on mobile */
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 15px 10px;
    }
    
    .gallery-overlay h4 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 12px;
        display: none; /* Hide subtitle to save space */
    }

    /* -- Contact -- */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-info h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 col on very small screens */
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}
