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

:root {
    --bg-color: #050505;
    --surface-color: #0f0f0f;
    --surface-color-light: #151515;
    --accent-color: #FBB94F; /* Extracted from logo */
    --accent-color-hover: #FFE36C; /* Highlight extracted from logo */
    --logo-red: #c1121f; /* Deep red extracted from logo */
    --logo-red-hover: #e01e2c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-gold: linear-gradient(135deg, #FBB94F 0%, #E0A030 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: translateY(-2px);
}

.nav-logo h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.book-btn {
    background: linear-gradient(135deg, var(--logo-red) 0%, #8a0b14 100%);
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 18, 31, 0.5);
    background: linear-gradient(135deg, var(--logo-red-hover) 0%, var(--logo-red) 100%);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Ken Burns Animation Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Photos/Others/Outside_Scenery.jpg') no-repeat center/cover;
    /* Applying the animation */
    animation: kenBurns 20s infinite alternate;
    z-index: 1;
}

/* Add a dark gradient overlay on top of the moving image for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}

.hero-content {
    position: relative;
    z-index: 3; /* ensures content sits above the animated background */
    max-width: 800px;
    padding: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    transform: translateZ(30px);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    transform: translateZ(20px);
}

/* Info Bar Container (Used in Policies etc.) */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

/* Specific styling for Info Bar when inside Hero Content to prevent double-boxing */
.hero-content .info-bar {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 30px 0 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
}

/* Sections */
.section-padding {
    padding: 100px 5%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Rooms */


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

.room-card {
    background: var(--surface-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border-color: rgba(212, 175, 55, 0.5);
}

.room-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-container img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-meta {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.room-features span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-features span::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 8px;
}

.room-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-old {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
}

.price-tax {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-outline {
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
}

/* Footer */
footer {
    background: var(--surface-color);
    padding: 60px 5% 20px;
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--glass-border);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content { padding: 40px 20px; transform-style: flat; }
    .hero-content h1 { font-size: 2.2rem; letter-spacing: 1px; line-height: 1.4; transform: none; }
    .hero-content p { transform: none; }
    .info-bar { flex-direction: column; gap: 20px; }
    .rooms-grid { grid-template-columns: 1fr; gap: 20px; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    .section-padding { padding: 60px 5%; }
    
    /* Mobile Menu Restoration */
    .navbar {
        justify-content: center;
    }
    .nav-logo {
        margin: 0 auto;
    }
    .menu-toggle {
        position: absolute;
        right: 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid var(--accent-color);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 7px);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }
}

/* Modal */
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding-top: 50px; overflow-y: auto; }
.modal-content { background: linear-gradient(145deg, rgba(15,15,15,1) 0%, rgba(5,5,5,1) 100%); border: 1px solid var(--accent-color); margin: 5vh auto; padding: 40px; width: 90%; max-width: 550px; border-radius: 20px; position: relative; animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); }
@keyframes zoomIn { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1); opacity: 1;} }
.close-btn { position: absolute; top: 20px; right: 25px; color: var(--text-secondary); font-size: 35px; font-weight: 300; cursor: pointer; transition: 0.3s; line-height: 1; }
.close-btn:hover { color: var(--accent-color); transform: rotate(90deg); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select { width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent-color); background: rgba(0,0,0,0.5); box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 12px auto; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

.btn-primary { padding: 12px 25px; background: var(--gradient-gold); color: #000; border: none; border-radius: 30px; cursor: pointer; font-weight: 700; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }
.btn-outline { padding: 12px 25px; border: 1px solid var(--accent-color); color: var(--accent-color); border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }

/* ========================================================================= */
/* ADVANCED UI/UX FEATURES */
/* ========================================================================= */

/* Icons Alignment */
i.ph {
    font-size: 1.1em;
    vertical-align: text-bottom;
    margin-right: 4px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

/* Micro Interactions */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.hover-lift:hover i.ph {
    color: var(--logo-red);
    transform: scale(1.2);
}

.hover-icon {
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}
.hover-icon:hover {
    color: var(--accent-color);
}
.hover-icon:hover i.ph {
    transform: scale(1.1) rotate(5deg);
}

.hover-feature {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}
.hover-feature:hover {
    transform: translateX(3px);
    color: var(--accent-color);
}
.hover-feature:hover i.ph {
    color: var(--logo-red);
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
    transform: scale(1.08);
}

.room-card:hover .room-img-container img {
    transform: scale(1.05);
}

/* 3. Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel img {
    min-width: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* 4. Flatpickr Overrides for Dark Theme */
.flatpickr-calendar {
    background: var(--surface-color) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
}

.flatpickr-day {
    color: var(--text-primary) !important;
}

.flatpickr-day.selected {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #000 !important;
    font-weight: bold;
}

.flatpickr-day:hover {
    background: rgba(212, 175, 55, 0.2) !important;
}

.flatpickr-current-month, .flatpickr-month, .flatpickr-weekday {
    color: var(--accent-color) !important;
    fill: var(--accent-color) !important;
}

.flatpickr-time {
    background: var(--surface-color) !important;
    border-top: 1px solid var(--glass-border) !important;
}

.flatpickr-time input, .flatpickr-time .flatpickr-am-pm {
    color: var(--text-primary) !important;
    background: transparent !important;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
    background: rgba(255,255,255,0.05) !important;
}

.numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--text-primary) !important;
}
.numInputWrapper span.arrowDown:after {
    border-top-color: var(--text-primary) !important;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Hero Book Button */
.hero-book-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--logo-red) 0%, #8a0b14 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hero-book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(193, 18, 31, 0.6);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    /* Fix grid overflow on mobile */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Fix gallery overflow on mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix testimonial slider padding on mobile */
    .testimonial-slider-container {
        padding: 0 10px !important;
    }
    
    .slider-btn {
        display: none !important; /* Hide arrows on mobile, users can swipe */
    }
    
    /* Adjust hero typography to prevent cutting */
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.4;
        transform: none;
    }
    
    .hero-content p {
        font-size: 1rem;
        transform: none;
    }
    
    /* Adjust section paddings */
    .section-padding {
        padding: 50px 15px;
    }
    
    /* Adjust info bar layout */
    .info-bar {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
        border-radius: 20px;
    }
    
    .info-item {
        justify-content: center;
        flex: 1 1 45%;
        font-size: 0.9rem;
    }
    
    /* Fix modal sizing */
    .modal {
        padding-top: 20px;
    }
    .modal-content {
        width: 95%;
        padding: 25px 20px;
        margin: 0 auto 40px auto;
    }
    
    /* Fix form layout on mobile */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Fix policies grid on mobile */
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Adjust lightbox buttons so they don't cover screen */
    .lightbox-prev, .lightbox-next {
        padding: 10px;
        font-size: 20px;
        background: rgba(0,0,0,0.7);
    }
}

/* ------------------------------------------------------------- */
/* LUXURY SCROLLBAR & SCROLL PROGRESS */
/* ------------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color-hover); }

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 10000;
    box-shadow: 0 0 10px var(--accent-color);
    transition: width 0.1s ease-out;
}

/* Testimonial Slider */
.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface-color);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.slider-btn:hover {
    background: var(--accent-color);
    color: #000;
}
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* ========================================================================= */
/* LIGHTBOX GALLERY */
/* ========================================================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}
#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--accent-color);
    padding: 20px 0;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100001;
}
.lightbox-close:hover {
    color: var(--logo-red);
    transform: rotate(90deg);
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 20px;
    margin-top: -20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(0,0,0,0.3);
    border: none;
    z-index: 100001;
}
.lightbox-next { right: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
}
