/* Global Styles */
:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #b3922b;
    /* Darker Gold */
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2D06B 50%, #D4AF37 100%);
    --secondary-color: #0a0a0a;
    /* Deep Black */
    --text-color: #2c2c2c;
    --light-text: #f4f4f4;
    --bg-color: #f8f8f8;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-color: #0a0a0a;
    --white: #1c1c1c;
    --text-color: #f0f0f0;
    --light-text: #ffffff;
    --secondary-color: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Dark Mode Specific Overrides - Force all text to be bright */
[data-theme="dark"] body {
    color: #f0f0f0;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff !important;
}

[data-theme="dark"] p {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .section-title h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .section-title p,
[data-theme="dark"] .about-text p,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .info-item p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('assets/hero_bg.jpg') no-repeat center center/cover;
}

[data-theme="dark"] .service-card {
    background: #1c1c1c;
    border: 1px solid #333;
}

[data-theme="dark"] .gallery-item .overlay h3 {
    color: var(--primary-color) !important;
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: #2a2a2a;
    color: #f0f0f0 !important;
    border-color: #444;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #999;
}

[data-theme="dark"] .contact-wrapper {
    background: #1c1c1c;
}

[data-theme="dark"] .contact-info {
    border-left-color: #333;
}

[data-theme="dark"] .footer {
    background-color: #000;
    color: #d0d0d0;
}

[data-theme="dark"] a {
    color: inherit;
}

/* Dark Mode - Header & Navigation */
[data-theme="dark"] .header {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #333;
}

[data-theme="dark"] .navbar a {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .navbar a:hover,
[data-theme="dark"] .navbar a.active {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-contact {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-contact:hover {
    background-color: var(--primary-color);
    color: #000 !important;
}

[data-theme="dark"] .menu-icon {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .theme-toggle {
    color: #f0f0f0 !important;
}

/* Dark Mode - Icons */
[data-theme="dark"] .service-icon,
[data-theme="dark"] .info-item i,
[data-theme="dark"] .social-links a i {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .social-links a {
    background-color: rgba(212, 175, 55, 0.1);
    color: #f0f0f0 !important;
}

[data-theme="dark"] .social-links a:hover {
    background-color: var(--primary-color);
    color: #000 !important;
}

html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--secondary-color);
    padding: 16px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Typography */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-title p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.navbar a {
    margin-left: 35px;
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-color);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.btn-contact {
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
    color: var(--primary-color);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(20deg);
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('assets/hero_bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 0px;
}

.hero-content .highlight {
    color: var(--primary-color);
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #555;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.service-card p {
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 1;
    transition: var(--transition);
    z-index: 10;
}

.gallery-item:hover .overlay {
    background: rgba(0, 0, 0, 0.85);
    padding-bottom: 20px;
}

.gallery-item .overlay h3 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    transform: none;
    transition: var(--transition);
}

.gallery-item:hover .overlay h3 {
    transform: scale(1.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--section-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-card-visual {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/elegant_texture.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: var(--white);
    position: relative;
}

.contact-card-visual::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    /* Gold border */
    pointer-events: none;
}

.contact-card-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card-content p {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 300px;
    }
}

.contact-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.input-group {
    margin-bottom: 25px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: var(--transition);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #aaa;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #eee;
    padding-left: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
    margin-right: 20px;
}

.info-item p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
}

.info-item p a {
    color: #555;
    transition: var(--transition);
}

.info-item p a:hover {
    color: var(--primary-color);
}

/* Chatbox Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: var(--gold-gradient);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
}

.chat-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-logo {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.close-chat {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-chat:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.message.bot {
    align-self: flex-start;
    background: var(--white);
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.message.user {
    align-self: flex-end;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.2);
}

.chat-input-area {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #555;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.question-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Scrollbar for chat */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    /* For absolute positioning of marker */
}

.map-container:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    /* Removes bottom space */
}

/* Custom Map Marker */
.map-marker-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    /* Point to center */
    pointer-events: none;
    /* Allow clicking through to map */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
    z-index: 2;
    animation: bounce 2s infinite;
}

.marker-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: var(--white);
    margin: 0 15px;
    font-size: 1.5rem;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-info {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 40px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 15px 0;
        font-size: 1.1rem;
    }

    .navbar a::after {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 70px;
    height: auto;
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
    height: 150px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10001;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(212, 175, 55, 0.8);
    color: var(--white);
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }

    .prev,
    .next {
        padding: 10px;
        font-size: 20px;
    }
}

/* Scroll Animations */
.reveal-up,
.reveal-left,
.reveal-right,
.zoom-in {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.9);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Parallax Section */
.parallax-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/celebration_bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin: 50px 0;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        /* Disable fixed bg on mobile for performance */
        height: 300px;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }
}