/* =============================================
   VARIABLES & BASE
   ============================================= */
:root {
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --white: #ffffff;
    --gray: #888888;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', sans-serif;
    --nav-height: 150px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: #222;
    overflow-x: hidden;
}

.font-playfair {
    font-family: var(--font-serif) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: var(--nav-height);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

    .navbar-custom.scrolled {
        background: rgba(0, 0, 0, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        border-bottom-color: rgba(212, 175, 55, 0.15);
    }

.navbar-brand {
    font-family: var(--font-serif) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    letter-spacing: 4px;
    text-decoration: none;
    transition: var(--transition);
}

    .navbar-brand:hover {
        color: var(--gold) !important;
    }

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.78rem !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1.2rem;
        right: 1.2rem;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

        .nav-link:hover::after {
            transform: scaleX(1);
        }
        
    .nav-link.border-0:hover i {
        color: var(--gold) !important;
    }

.btn-gold {
    background: var(--gold);
    color: var(--black) !important;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

    .btn-gold:hover {
        background: transparent;
        color: var(--gold) !important;
        border-color: var(--gold);
    }

.content-wrapper {
    padding-top: var(--nav-height);
}

    /* Remove padding-top for hero (it's full screen) */
    .content-wrapper > main > .hero-zoom-section:first-child {
        margin-top: calc(-1 * var(--nav-height));
    }


/* =============================================
   HERO ZOOM SLIDER
   ============================================= */
.hero-zoom-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--black);
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.8s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Ken Burns background */
.hero-slide-bg {
    position: absolute;
    inset: -8%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    animation: kenBurns 22s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.18) translate(0, 0);
    }

    100% {
        transform: scale(1.0) translate(1%, 0.5%);
    }
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100% );
    z-index: 3;
    pointer-events: none;
}

/* Hero text content */
.hero-content {
    position: absolute;
    bottom: 14%;
    left: 8%;
    z-index: 10;
    color: var(--white);
}

.hero-text-block {
    transition: opacity 0.8s ease;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
}

/* Vertical bullets - RIGHT */
.hero-bullets {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.hero-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    outline: none;
}

    .hero-bullet.active {
        background: var(--white);
        border-color: var(--white);
        transform: scale(1.4);
    }

    .hero-bullet:hover {
        border-color: var(--gold);
        background: var(--gold);
    }

/* Social links - LEFT vertical */
.hero-social {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 18px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

    .hero-social a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        font-family: var(--font-sans);
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        transition: var(--transition);
    }

        .hero-social a:hover {
            color: var(--gold);
        }


/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.section-desc {
    max-width: 760px;
    color: #666;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}


/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: #f9f8f6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.stats-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stats-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin: 0;
}


/* =============================================
   POPULAR OFFERS SECTION
   ============================================= */
.offers-section {
    background: var(--white);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

    .offers-section .section-title {
        color: #111;
    }

.offer-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e4dc;
    transition: var(--transition);
}

    .offer-item:hover {
        border-bottom-color: var(--gold);
    }

        .offer-item:hover .offer-title {
            color: var(--gold);
        }

.offer-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0;
    transition: var(--transition);
}

.offer-desc {
    font-size: 0.78rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.offer-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 1rem;
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background: var(--dark);
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

    .testimonials-section .section-title {
        color: var(--white);
    }

.testimonial-card {
    padding: 2rem 1rem;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
    user-select: none;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
    margin: 0 1px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition);
}

    #testimonialCarousel .carousel-control-prev:hover,
    #testimonialCarousel .carousel-control-next:hover {
        background: var(--gold);
    }

#testimonialCarousel .carousel-control-prev {
    left: -60px;
}

#testimonialCarousel .carousel-control-next {
    right: -60px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer-custom {
    background-color: var(--black);
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('../img/footer-img.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-sans);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
    max-height: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-brand {
    font-family: var(--font-serif) !important;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 4px;
    }

.footer-contact li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

    .footer-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-size: 0.8rem;
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-social-icons a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
            transform: translateY(-2px);
        }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .navbar-custom {
        height: auto;
        padding: 0.75rem 0;
    }

    .content-wrapper {
        padding-top: 60px;
    }

    .hero-social {
        display: none;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        bottom: 12%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.97);
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-bullets {
        right: 14px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    #testimonialCarousel .carousel-control-prev {
        left: -10px;
    }

    #testimonialCarousel .carousel-control-next {
        right: -10px;
    }
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(var(--nav-height) + 2rem);
}

.login-ambient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.login-ambient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.login-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.login-form {
    margin-bottom: 1.5rem;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem 1rem 0.6rem;
    color: var(--white);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.form-control-custom::placeholder {
    color: transparent;
}

.form-label-custom {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: 0.8rem;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.validation-msg {
    margin-top: 5px;
    display: inline-block;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.custom-checkbox-input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    cursor: pointer;
}

.custom-checkbox-label {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.custom-checkbox-label:hover {
    color: var(--white);
}

.forgot-link {
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--white) !important;
}

.btn-login {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-login:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.register-section {
    text-align: center;
    margin-top: 2rem;
}

.register-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.register-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

.register-link:hover {
    color: var(--white) !important;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-divider span {
    padding: 0 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.btn-external {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-external:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
}

@media (max-width: 575px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
}

/* =============================================
   ADMIN DASHBOARD
   ============================================= */
.admin-dashboard-container {
    min-height: calc(100vh - var(--nav-height));
    background: var(--dark-2);
    position: relative;
    padding: 3rem 1.5rem;
    overflow: hidden;
    color: var(--white);
    margin-top: calc(-1 * var(--nav-height) + 80px); /* Adjust to compensate header layout */
    padding-top: calc(var(--nav-height) + 2rem);
    border-radius: 8px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.admin-ambient {
    position: absolute;
    top: -10%;
    left: 40%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(17, 17, 17, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.admin-header {
    position: relative;
    z-index: 2;
}

.admin-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.admin-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.admin-cards-row {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.admin-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.admin-stat-card:hover::before {
    background: var(--gold);
}

.admin-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.admin-stat-card:hover .admin-card-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.admin-card-content {
    flex-grow: 1;
}

.admin-card-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.admin-card-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.admin-card-action {
    width: 100%;
}

.btn-admin-manage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-admin-manage:hover {
    background: var(--gold);
    color: var(--black) !important;
    border-color: var(--gold);
}


/* =============================================
   HOME GALLERY CAROUSEL
   ============================================= */
.gallery-carousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-carousel-img-wrapper {
    position: relative;
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
    background: #f8f9fa;
}

.gallery-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.gallery-carousel-caption {
    bottom: 2rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: auto;
    max-width: 80%;
}

.gallery-carousel-control {
    width: 10%;
    opacity: 0;
    transition: var(--transition);
}

.gallery-carousel:hover .gallery-carousel-control {
    opacity: 0.8;
}

.gallery-carousel-control:hover {
    opacity: 1 !important;
}

.gallery-carousel-control-prev-icon,
.gallery-carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--gold);
    border-radius: 50%;
    background-size: 50%;
}

.gallery-carousel-indicators {
    margin-bottom: 1rem;
}

.gallery-carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: var(--white) !important;
    opacity: 0.5;
    margin: 0 6px !important;
    border: 2px solid transparent !important;
    transition: var(--transition);
}

.gallery-carousel-indicators button.active {
    background-color: var(--gold) !important;
    opacity: 1;
    transform: scale(1.3);
}

