/* General Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.banquet-page {
    font-family: 'Poppins', sans-serif;
    color: #2b2b2b;
    background: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #d4af37, #a68b2a);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Events Section */
.events-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff, #f8f8f8);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.events-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #1a2a44;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #d4af37;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.event-card.visible {
    opacity: 1;
    transform: scale(1);
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.event-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.event-card:hover .event-icon-wrapper {
    background: #a68b2a;
}

.event-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.event-card h3 {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    color: #1a2a44;
    margin-bottom: 15px;
}

.event-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background: #f8f8f8;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.gallery-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 18px;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #d4af37;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.zoom-icon:hover {
    background: #d4af37;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #d4af37;
}

/* Animations */
.animate-text, .animate-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.visible, .animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 40px;
    }

    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about-section,
    .events-section,
    .gallery-section {
        padding: 60px 15px;
    }

    .about-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .event-card {
        padding: 30px 15px;
    }

    .event-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .event-icon {
        width: 50px;
        height: 50px;
    }

    .event-card h3 {
        font-size: 18px;
    }

    .event-desc {
        font-size: 13px;
    }

    .gallery-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .events-container {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 160px;
    }

    .close-lightbox {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }
}