/* 
   The Jaya Marriage Lawn - Main Stylesheet
   Theme: Modern Luxury, Gold & Royal Maroon
   Palette: Rich Maroon (#6A040F), Gold Gradient, Pure White, Dark Charcoal
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
    --primary-color: #6A040F;
    /* Deep Rich Maroon */
    --primary-dark: #370617;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --bg-color: #FFFFFF;
    --bg-light: #FAFAFA;
    --text-color: #2D2D2D;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    line-height: 1.3;
    font-weight: 600;
}

.script-text {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Button Styling 2.0 */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Titles 2.0 */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-top-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    padding: 15px 0;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 15px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--primary-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 35px;
    color: var(--primary-color);
}

.dropdown-menu li a:hover::before {
    width: 20px;
    left: 10px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-dark);
}

/* Hero Section */
/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Ornamental Border for Hero Slides */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    animation: fadeUp 1s ease;
}

.hero-slide p.tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-slide h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-buttons .btn {
    margin: 0 10px;
    min-width: 180px;
}

/* Slider Controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 10px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-slide::after {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

/* Feature/Service Boxes - Minimalist Luxury */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-box {
    padding: 40px 30px;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: 3rem;
    background: -webkit-linear-gradient(#D4AF37, #6A040F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* About Section - Overlap Layout */
.about-preview {
    display: flex;
    align-items: center;
    position: relative;
}

.about-image {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.about-image img {
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
    background: var(--white);
    padding: 60px;
    margin-left: -100px;
    /* Overlap */
    z-index: 2;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Event Gallery Teaser */
/* Event Gallery Teaser - Redesigned */
/* Event Gallery Teaser - Luxury Hover Card Design */
.event-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card-luxury {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(55, 6, 23, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.event-card-luxury:hover .event-card-inner::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(106, 4, 15, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.event-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.4, 1);
}

.event-card-luxury:hover img {
    transform: scale(1.1);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.event-card-luxury:hover .event-card-content {
    transform: translateY(0);
}

.event-subtitle {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.event-card-luxury:hover .event-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.event-card-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    line-height: 1.1;
}

.event-divider {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 15px;
    transition: width 0.5s ease 0.2s;
}

.event-card-luxury:hover .event-divider {
    width: 60px;
}

.event-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.event-card-luxury:hover .event-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .event-grid-home {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px 40px;
    }

    .event-card-luxury {
        height: 450px;
    }

    /* Show content by default on mobile */
    .event-subtitle,
    .event-card-content p,
    .event-divider {
        opacity: 1;
        transform: translateY(0);
        width: 60px;
    }

    .event-card-content {
        transform: translateY(0);
    }
}

/* Facilities - Premium Cards */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.facility-card:hover .icon-box {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
}

.facility-card i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.facility-card:hover i {
    color: #fff;
}

.facility-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section - Side by Side */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.faq-content {
    flex: 1;
}

.faq-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Recent Weddings Slider */
.wedding-slider-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    /* More padding */
}

.wedding-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.wedding-slide {
    min-width: 320px;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.wedding-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wedding-slide:hover img {
    transform: scale(1.1);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wedding-slide:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--gold);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Desktop: 6 cols */
    gap: 0;
}

.insta-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.insta-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: #fff;
    z-index: 2;
    transition: transform 0.3s ease;
}

.insta-item:hover i {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 968px) {
    .experience-badge {
        right: 0;
        bottom: -20px;
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.5rem;
    }

    .trust-stats-row {
        justify-content: center;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 cols */
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobile: 2 cols */
    }
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    background: #000;
    aspect-ratio: 1 / 1;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Video Grid */
@media (max-width: 968px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

/* Responsive FAQ */
@media (max-width: 968px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-image-container {
        min-height: 300px;
        order: -1;
        /* Image on top on mobile? Or bottom? Let's keep natural order or put on top. User didn't specify, but image first is usually nice visually, or after. Let's keep it below for now unless space is tight. Actually, let's just stack it normally below. */
        display: none;
        /* Actually, on mobile, space is tight. Maybe hide image or stack. Let's stack. */
        display: block;
        height: 300px;
    }
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

/* Header Book Now Button Special Style */
.btn-header-book {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    /* Vibrant Gold/Orange */
    color: #fff;
    /* White text */
    padding: 10px 25px;
    border-radius: 30px;
    /* Pill shape */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    /* Glowing shadow */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-header-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-header-book:hover::before {
    left: 100%;
}

.btn-header-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #FF9800, #F57C00);
    /* Darker Orange on hover */
    color: #fff;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    /* Keep questions readable */
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Active State for FAQ (JS Toggled) */
.faq-item.active .faq-question {
    background: rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    pointer-events: none;
}

/* CTA Section specific tweak */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.png');
    /* If available, else just texture */
    opacity: 0.1;
    pointer-events: none;
}



/* Pricing Section - Elegant Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 50px 30px;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.price-card.featured {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.price-card.featured h3,
.price-card.featured .price {
    color: var(--white);
}

.price-card.featured .price span {
    color: rgba(255, 255, 255, 0.7);
}

.price-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* FooterStyles */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .about-preview {
        flex-direction: column;
    }

    .about-text {
        margin-left: 0;
        margin-top: -50px;
        width: 90%;
    }

    .event-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p.tagline {
        font-size: 1.8rem;
    }

    .event-grid-home {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        left: 0;
    }
}

               D i r e c t o r y :   C : \ x a m p             p \ h t d o c s \ j a y             M o d e           L a s t W r i t e T i m e     - - - -           - - - - - - - - - - - - -     d - - - - -         0 7 - 0 1 - 2 0 2 6                                     0 1 : 1 1   P M     d - - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 0   P M     - a - - - -         0 9 - 0 1 - 2 0 2 6                                     1 1 : 0 7   A M     - a - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 3   P M     - a - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 3   P M     - a - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 3   P M     - a - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 5   P M     - a - - - -         1 0 - 0 1 - 2 0 2 6                                     0 1 : 1 7   P M     - a - - - -         0 7 - 0 1 - 2 0 2 6                                     1 2 : 5 5   P M             
/* ===== EVENTS PAGE STYLES ===== */

/* Events Hero Section */
.events-hero {
    height: 60vh;
    background: linear-gradient(rgba(106, 4, 15, 0.8), rgba(55, 6, 23, 0.8)), url('../Images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.events-hero .hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.events-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-item:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 4, 15, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-item:hover .event-overlay {
    opacity: 1;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.event-icon i {
    font-size: 2rem;
    color: var(--white);
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.event-features {
    list-style: none;
    margin-bottom: 30px;
}

.event-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-features li i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
}

.event-content .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Events Section */
.why-choose-events .features-grid {
    margin-top: 50px;
}

.why-choose-events .feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.why-choose-events .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.why-choose-events .feature-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.why-choose-events .feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
}

.why-choose-events .feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section Buttons */
.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    min-width: 160px;
    padding: 16px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Responsive Design for Events Page */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .events-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .events-hero .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .event-item {
        margin: 0 10px;
    }

    .event-image {
        height: 250px;
    }

    .event-content {
        padding: 25px 20px;
    }

    .event-content h3 {
        font-size: 1.5rem;
    }

    .why-choose-events .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 200px;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .events-hero .hero-content h1 {
        font-size: 2rem;
    }

    .events-grid {
        margin: 30px 0;
    }

    .event-item {
        margin: 0 5px;
    }

    .event-content {
        padding: 20px 15px;
    }

    .event-content h3 {
        font-size: 1.3rem;
    }

    .event-features li {
        font-size: 0.85rem;
    }

    .why-choose-events .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-events .feature-box {
        padding: 30px 20px;
    }
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Event Item Hover Animation Enhancement */
@media (hover: hover) {
    .event-item {
        position: relative;
        overflow: hidden;
    }

    .event-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .event-item:hover::before {
        left: 100%;
    }
}

/* Loading Animation for Images */
.event-image {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.event-image img {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Enhanced Button Hover Effects */
.event-content .btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.event-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.event-content .btn-primary:hover::before {
    left: 100%;
}