/* =============================================
   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.90rem !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.95rem;
    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.90rem;
    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(1.1rem, 2vw, 1.5rem);
    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.90rem;
    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: 1.15rem;
    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.90rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin: 0;
}


/* =============================================
   POPULAR OFFERS SECTION (kept for CMS pages)
   ============================================= */
.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: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0;
    transition: var(--transition);
}

.offer-desc {
    font-size: 0.95rem;
    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;
}


/* =============================================
   DRINK MENU SECTION
   ============================================= */
.drink-menu-section {
    background: #f9f8f6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.drink-menu-title {
    color: #111;
}

.drink-menu-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
}

/* Main card */
.drink-menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.12);
    max-width: 860px;
    margin: 0 auto;
}

/* Columns */
.drink-col {
    position: relative;
}

.drink-col-left {
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.drink-col-inner {
    padding: 2.5rem 2.5rem 2rem;
}

/* Category badge */
.drink-category-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--black);
    background: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.drink-category-badge--alt {
    background: var(--dark);
    color: var(--gold);
}

/* Drink list */
.drink-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0ece4;
    transition: var(--transition);
    cursor: default;
}

    .drink-item:last-child {
        border-bottom: none;
    }

    .drink-item:hover .drink-name {
        color: var(--gold);
        padding-left: 4px;
    }

    .drink-item:hover .drink-dot {
        transform: scale(1.4);
        background: var(--gold);
    }

.drink-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.drink-dot--alt {
    background: #7b9e8a;
}

.drink-item:hover .drink-dot--alt {
    background: var(--gold);
}

.drink-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Prosecco banner */
.prosecco-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1e1a0e 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2rem 2.5rem;
}

.prosecco-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.prosecco-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
    animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.prosecco-label {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.25rem;
    line-height: 1.1;
}

.prosecco-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.85rem;
}

.prosecco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prosecco-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.90rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--black);
    background: var(--gold);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    white-space: nowrap;
    transition: var(--transition);
}

    .prosecco-tag:hover {
        background: var(--gold-light);
    }

/* Responsive */
@media (max-width: 767px) {
    .drink-col-left {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .drink-col-inner {
        padding: 2rem 1.5rem 1.5rem;
    }

    .prosecco-banner {
        padding: 1.5rem;
    }
}


/* =============================================
   SERVICES OVERVIEW SECTION
   ============================================= */
.services-overview-section {
    background: #f9f8f6;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.service-list-name {
    transition: var(--transition);
    cursor: default;
}

.service-list-name:hover {
    color: var(--gold) !important;
    padding-left: 3px;
}


/* =============================================
   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.20rem;
    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.90rem;
    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.90rem;
    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: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 4px;
    }

.footer-contact li {
    font-size: 1rem;
    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: 1rem;
    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: 1.10rem;
    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: 1rem;
    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 — INFINITE MARQUEE
   ============================================= */

/* Outer mask that clips the scrolling track */
.gallery-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* Subtle fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* Inner track — flex row, wide enough to hold originals + duplicates */
.gallery-marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 12px;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

/* Pause on hover for accessibility */
.gallery-marquee-wrapper:hover .gallery-marquee-track {
    animation-play-state: paused;
}

/* Individual image card — square aspect ratio */
.gallery-marquee-item {
    flex: 0 0 auto;
    width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-marquee-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keyframes: translate by exactly -50% so the duplicate seamlessly replaces the original */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive — smaller cards on mobile */
@media (max-width: 575px) {
    .gallery-marquee-item {
        width: 200px;
    }

    .gallery-marquee-track {
        gap: 8px;
        animation-duration: 20s;
    }
}

