@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #997A00;
    --bg-dark: #FAF8F5; /* Warm premium ivory/alabaster */
    --bg-surface: #FFFFFF; /* Crisp white */
    --bg-surface-light: #F3EFE9; /* Warm linen/champagne tone */
    --text-main: #1C1B17; /* Very dark charcoal with warm undertone */
    --text-muted: #5C5850; /* Muted charcoal */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(212, 175, 55, 0.25);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

a:hover {
    color: var(--gold-primary);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

nav.scrolled .logo {
    color: var(--gold-dark);
}

nav.scrolled .nav-links a {
    color: #1C1B17;
}

nav.scrolled .nav-links a:hover {
    color: var(--gold-primary);
}

nav.scrolled .mobile-menu-btn {
    color: #1C1B17;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.taxi-link {
    color: #3498db !important; /* A professional blue to distinguish it from the gold premium theme */
    font-weight: 600;
}

.taxi-link:hover {
    color: #5dade2 !important;
}

/* --- Buttons --- */
.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold::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: all 0.6s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    color: var(--bg-dark);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.7)), url('home-hero.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- Sections Common --- */
section {
    padding: 8rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* --- Split Layouts --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-block {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.image-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-primary);
    transform: translate(15px, 15px);
    z-index: -1;
    transition: var(--transition-smooth);
}

.image-block:hover::after {
    transform: translate(20px, 20px);
}

.image-block img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 2 !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    transition: transform 0.7s ease;
}

.image-block:hover img {
    transform: scale(1.05);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Forms & Glassmorphism --- */
.form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    display: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* --- Specific Sections --- */
#wedding {
    background-color: var(--bg-surface-light);
}

#concierge {
    background-color: var(--bg-dark);
}

#events {
    background-color: var(--bg-surface);
}

/* --- Footer --- */
footer {
    background: #050505;
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* --- Mobile Nav Toggle --- */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .split-layout.reverse {
        direction: ltr; /* Reset reverse on mobile */
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .image-block {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .logo {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 100px; /* Increased space for logo */
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .nav-links.active {
        right: 0;
    }
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    section {
        padding: 5rem 5%;
    }
    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* --- Premium Theme Additions --- */

/* 1. Sleek Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
    border: 2px solid #050505;
    transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* 2. Metallic Shimmer & Gold Gradients */
.btn-gold {
    background: linear-gradient(135deg, #b38f1d 0%, #d4af37 50%, #f3e5ab 100%) !important;
    background-size: 200% auto !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000 !important;
}

.btn-gold:hover {
    background-position: right center !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

/* 3. Glassmorphism for Form & Detail Containers */
.form-container {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(214, 175, 55, 0.25) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* 4. Luxury Inputs Focus Effect */
.form-control {
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.form-control:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

/* 5. Feature Card Enhancements */
.feature-card {
    border-radius: 0px;
    background: linear-gradient(145deg, #121212, #181818);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* 6. Image Blocks Subtle Shadow & Shutter Effect */
.image-block {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.image-block::after {
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.image-block:hover {
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
}

/* 7. Active Navigation Glow */
nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-links a {
    font-weight: 500;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* --- Luxury Light Theme Global Styling Overrides --- */

h1, h2, h3, h4, h5, h6 {
    color: #1C1B17 !important;
}

p {
    color: #5C5850 !important;
}

.form-control {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #1C1B17 !important;
}

.form-control:focus {
    background: #FFFFFF !important;
    border-color: var(--gold-primary) !important;
    color: #1C1B17 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15) !important;
}

.feature-card {
    background: #FFFFFF !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.feature-card h3,
.feature-card h4 {
    color: #1C1B17 !important;
}

.feature-card p {
    color: #5C5850 !important;
}

.feature-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-bottom: 1.5rem !important;
}

.feature-card:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12) !important;
    border-color: var(--gold-primary) !important;
}

footer {
    background: #11100D !important;
    color: #FAF8F5 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
}

footer h4 {
    color: var(--gold-primary) !important;
}

footer .footer-links a {
    color: #CFCBC4 !important;
}

footer .footer-links a:hover {
    color: var(--gold-primary) !important;
}

footer p {
    color: #CFCBC4 !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.image-block::after {
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.image-block:hover {
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1) !important;
}

#wedding-packages, 
#events-calendar,
#concierge-gallery {
    background: var(--bg-surface-light) !important;
}

#wedding-faq,
#concierge-details,
#events-details {
    background: var(--bg-surface) !important;
}

#wedding-booking,
#events,
#concierge {
    background: var(--bg-dark) !important;
}

#trust-factors {
    background: var(--bg-surface) !important;
}

#trust-factors > div > div:last-child {
    background: var(--bg-surface-light) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* ==========================================
   Interactive Additions (Premium Features)
   ========================================== */

/* 1. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 2. Animated Success Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: #FAF8F5;
    border: 1px solid var(--gold-primary);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5C5850;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #1C1B17;
}
.modal-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.modal-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}
.modal-content p {
    color: #5C5850;
}

/* 3. FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    padding: 0.5rem 0;
    cursor: pointer;
    outline: none;
}
.faq-question h4 {
    margin-bottom: 0;
    color: #1C1B17 !important;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    transition: color 0.3s;
}
.faq-question:hover h4 {
    color: var(--gold-primary) !important;
}
.faq-icon {
    font-size: 1rem;
    color: var(--gold-primary);
    transition: transform 0.4s;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s;
    padding-right: 2rem;
}
.faq-item.active .faq-answer {
    padding-top: 1rem;
}

/* 4. Testimonial Slider */
.testimonial-slider {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}
.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* 5. Image Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    object-fit: contain;
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: var(--gold-primary);
}
.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}
.image-block {
    cursor: pointer;
}
