/* Modern Dark Theme for Hugga Bar */
:root {
    --color-dark: #0a0a0a;
    --color-dark-secondary: #1a1a1a;
    --color-dark-tertiary: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-light: #f0d878;
    --color-gold-dark: #b8941f;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-dim: #707070;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--color-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.2);
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--color-dark-secondary);
    border-left: 1px solid var(--color-gold);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.side-nav.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.nav-content {
    padding: 80px 40px 60px;
}

.nav-link {
    display: block;
    padding: 20px 0;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    border-bottom: 1px solid var(--color-dark-tertiary);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
    padding-left: 20px;
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.lang-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--color-dark-tertiary);
    color: var(--color-text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

/* Nav Footer */
.nav-footer {
    margin-top: 30px;
}

.nav-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-dark-tertiary);
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: scale(1.1);
}

.nav-reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.review-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.review-link i {
    color: var(--color-gold);
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/XXXL.jpg') center/cover no-repeat;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Info Section */
.info-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-dark-secondary);
    overflow: hidden;
}

.info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Screenshot_3.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: 1;
}

.info-section .container {
    position: relative;
    z-index: 2;
}

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

.info-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-tertiary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 40px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.info-card p {
    color: var(--color-text-secondary);
    font-size: 16px;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 60px;
    background: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Menu Buttons Section */
.menu-buttons {
    padding: 100px 0;
    background: #101b17;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: 4px;
}

/* Swipe Hint */
.swipe-hint {
    display: none;
}

/* Menu Carousel */
.menu-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.menu-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 80px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu-carousel::-webkit-scrollbar {
    display: none;
}

.menu-card {
    position: relative;
    flex: 0 0 250px;
    width: 250px;
    height: 420px;
    text-decoration: none;
    overflow: hidden;
    background: var(--color-dark-secondary);
    border: 3px solid var(--color-gold);
    border-radius: 125px;
    transition: all 0.4s ease;
    scroll-snap-align: center;
}

/* Remove clip-path for circular design */
.main-menu,
.bar-menu,
.wine-menu {
    clip-path: none;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.15);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.menu-card:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.menu-card:hover::before {
    background: rgba(10, 10, 10, 0.1);
}

.menu-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 0;
}

.main-menu .menu-card-bg {
    background: url('../images/Screenshot_2.png') center/cover;
}

.bar-menu .menu-card-bg {
    background: url('../images/Screenshot_9.png') center/cover;
}

.wine-menu .menu-card-bg {
    background: linear-gradient(135deg, #74070D, #310F10);
}

.menu-card:hover .menu-card-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.menu-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu-card-content i {
    font-size: 60px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.menu-card-content h3 {
    font-size: 28px;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.menu-card-content p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-dark-tertiary);
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

/* About Section */
.about-section {
    padding: 150px 0;
    background: #101b17;
}

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

.about-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 60px;
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: 4px;
}

.reveal-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a4a4a;
    opacity: 0.4;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-text.revealed {
    color: #ffffff;
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for each paragraph */
.reveal-text:nth-child(2).revealed {
    transition-delay: 0s;
}

.reveal-text:nth-child(3).revealed {
    transition-delay: 0.3s;
}

.reveal-text:nth-child(4).revealed {
    transition-delay: 0.6s;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.frame-1 {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.frame-2 {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}

.frame-3 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.frame-4 {
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
}

.show-more-btn {
    display: block;
    margin: 0 auto;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    z-index: 3000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.gallery-modal.active {
    display: flex;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: rotate(90deg);
}

.gallery-modal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    padding: 40px 20px 40px;
    margin-top: 100px;
}

.gallery-modal-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Contacts Section */
.contacts-section {
    padding: 100px 0;
    background: #101b17;
}

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

.location-card {
    padding: 40px;
    background: var(--color-dark-secondary);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-dark-tertiary);
}

.location-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.coffito-logo {
    width: 60px;
    height: 60px;
    background: transparent;
    filter: brightness(1.1);
}

.location-card h3 {
    font-size: 24px;
    color: var(--color-gold);
    margin: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-info p {
    margin: 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.location-info p i {
    color: var(--color-gold);
    width: 20px;
}

.location-info .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.location-info .menu-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.location-card p {
    margin: 15px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-card i {
    color: var(--color-gold);
    width: 20px;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 150px 0;
    background: #101b17;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Screenshot_17.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote p {
    font-size: clamp(24px, 3vw, 40px);
    font-style: italic;
    color: var(--color-gold);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--color-dark-tertiary);
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--color-dark-secondary);
    border-top: 1px solid var(--color-dark-tertiary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 60px;
    height: auto;
    filter: invert(1);
}

.footer-logo p {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid var(--color-dark-tertiary);
}

.footer-developer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    padding-bottom: 10px;
}

.footer-developer span {
    color: var(--color-gold);
    font-family: monospace;
    margin-right: 5px;
}

.footer-developer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: var(--color-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .side-nav {
        width: 100%;
    }

    .nav-content {
        padding: 60px 20px 80px;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 20px;
    }

    .nav-footer {
        margin-top: 20px;
    }

    .nav-social {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .nav-social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .nav-reviews {
        gap: 10px;
        margin-bottom: 20px;
    }

    .review-link {
        padding: 12px;
        font-size: 13px;
    }

    .language-switcher {
        margin-top: 20px;
    }

    .hero-logo {
        width: 120px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        flex: 0 0 250px;
        width: 250px;
        height: 420px;
        border-radius: 125px;
        scroll-snap-align: center;
        border-width: 2px;
    }

    .menu-carousel {
        gap: 40px;
        padding: 30px calc(50vw - 135px);
        justify-content: flex-start;
        scroll-padding: 0 calc(50vw - 135px);
    }

    .menu-carousel-wrapper {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-dots {
        display: flex;
    }

    .menu-card-content {
        padding: 30px 20px;
    }

    .menu-card-content i {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .menu-card-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .menu-card-content p {
        font-size: 14px;
    }

    .swipe-hint {
        font-size: 14px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .gallery-modal-content {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS (CSS-based) ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* Text reveal - staggered animation */
.reveal-text {
    color: #4a4a4a;
    opacity: 0.4;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-text.revealed {
    color: #ffffff;
    opacity: 1;
    transform: translateY(0);
}

/* ===== UPDATED STICKY HEADER - TRANSPARENT WITH LANGUAGE SWITCHER ===== */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: top 0.4s ease;
}

.sticky-header.visible {
    top: 0;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.sticky-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sticky-logo span {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.sticky-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher-header {
    display: flex;
    gap: 8px;
}

.lang-btn-header {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-btn-header:hover,
.lang-btn-header.active {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.hamburger-menu-sticky {
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu-sticky:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger-menu-sticky span {
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

/* Hero Menu Button */
.hero-menu-button {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 45px;
    background: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-menu-button:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ===== REDESIGNED PROMOTIONS - IMAGE + TEXT LAYOUT ===== */
.promotions-section {
    padding: 120px 0;
    background: var(--color-dark);
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.promo-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--color-dark-secondary);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--color-dark-tertiary);
    transition: all 0.4s ease;
}

.promo-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.promo-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.promo-content {
    padding: 50px;
    position: relative;
}

.promo-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
    color: var(--color-dark);
    font-size: 32px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 25px;
}

.promo-title {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.promo-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.promo-day {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 25px;
    color: var(--color-gold);
    font-size: 15px;
    font-weight: 600;
}

/* Alternate layout for right-aligned images */
.promo-item.promo-right {
    grid-template-columns: 1fr 1fr;
}

/* ===== SMALLER GALLERY WITH VARIED SIZES ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--color-dark-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-dark-tertiary);
    transition: all 0.4s ease;
}

/* Varied sizes - some next to each other, some bigger */
.gallery-item.frame-1 {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 40px 40px 20px 20px;
    height: 420px;
}

.gallery-item.frame-2 {
    border-radius: 30px;
    height: 200px;
}

.gallery-item.frame-3 {
    border-radius: 30px;
    height: 200px;
}

.gallery-item.frame-4 {
    grid-column: span 2;
    border-radius: 50px;
    height: 250px;
}

.gallery-item.frame-5 {
    border-radius: 20px 40px 20px 40px;
    height: 280px;
}

.gallery-item.frame-6 {
    border-radius: 40px 20px 40px 20px;
    height: 280px;
}

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

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    z-index: 10;
}

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

/* ===== CONTACTS IN GRAY BLOCK (MOVED TO BOTTOM) ===== */
.contacts-section {
    padding: 80px 0;
    background: var(--color-dark-secondary);
    border-top: 1px solid var(--color-dark-tertiary);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .sticky-header-content {
        padding: 10px 20px;
    }
    
    .sticky-logo img {
        height: 35px;
    }
    
    .sticky-logo span {
        font-size: 16px;
    }
    
    .sticky-header-right {
        gap: 12px;
    }
    
    .language-switcher-header {
        gap: 5px;
    }
    
    .lang-btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hamburger-menu-sticky {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-menu-sticky span {
        width: 20px;
    }
    
    .hero-menu-button {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .promotions-section {
        padding: 60px 0;
    }
    
    .promotions-list {
        gap: 40px;
        margin-top: 40px;
    }
    
    .promo-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .promo-image {
        height: 250px;
    }
    
    .promo-content {
        padding: 30px 25px;
    }
    
    .promo-badge {
        font-size: 24px;
        padding: 10px 25px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-description {
        font-size: 15px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    
    .gallery-item.frame-1 {
        grid-column: span 2;
        grid-row: span 1;
        height: 280px;
    }
    
    .gallery-item.frame-2,
    .gallery-item.frame-3 {
        height: 180px;
    }
    
    .gallery-item.frame-4 {
        grid-column: span 2;
        height: 200px;
    }
    
    .gallery-item.frame-5,
    .gallery-item.frame-6 {
        height: 220px;
    }
    
    .contacts-section {
        padding: 60px 0;
    }
}
/* ===== FINAL CSS UPDATES ===== */

/* Fix sticky header layout (no hamburger button) */
.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.sticky-header-right {
    display: flex;
    align-items: center;
}

/* Remove old hamburger-menu-sticky styles */
.hamburger-menu-sticky {
    display: none !important;
}

/* ===== UPDATED PROMOTIONS STYLES ===== */

/* Badge with subtitle */
.promo-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
    color: var(--color-dark);
    font-size: 36px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 25px;
    line-height: 1;
}

.badge-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

/* Highlighted title */
.promo-title.highlighted {
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.promo-title.highlighted::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
}

/* Promo button (replaces promo-day) */
.promo-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box !important;
}

.promo-button:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateX(5px);
}

/* Promo wrap layout (text wraps around image) */
.promo-item.promo-wrap {
    display: block;
    padding: 50px;
}

.promo-content-wrap {
    position: relative;
}

.promo-image-float {
    float: right;
    width: 400px;
    height: 350px;
    margin: 0 0 30px 40px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.promo-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-item.promo-wrap:hover .promo-image-float img {
    transform: scale(1.1);
}

.promo-content-wrap::after {
    content: '';
    display: table;
    clear: both;
}

/* ===== AESTHETIC DIVIDER SECTION ===== */
.aesthetic-divider {
    padding: 80px 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.aesthetic-divider::before,
.aesthetic-divider::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.aesthetic-divider::before {
    top: -150px;
    left: -100px;
}

.aesthetic-divider::after {
    bottom: -150px;
    right: -100px;
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.ornament-center {
    animation: rotate-ornament 20s linear infinite;
}

@keyframes rotate-ornament {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== FIX FOR MISSING LEFT BORDERS ===== */
.location-card {
    background: var(--color-dark-secondary);
    border: 2px solid var(--color-gold) !important;
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
    box-sizing: border-box !important;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold-light) !important;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--color-gold) !important;
    color: var(--color-gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box !important;
}

.menu-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateX(5px);
}

/* Ensure all promo items have proper borders */
.promo-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--color-dark-secondary);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--color-dark-tertiary) !important;
    transition: all 0.4s ease;
    box-sizing: border-box !important;
}

.promo-item:hover {
    border-color: var(--color-gold) !important;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Fix for gallery items */
.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-dark-tertiary);
    transition: all 0.4s ease;
    box-sizing: border-box !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .sticky-header-content {
        padding: 10px 20px;
    }
    
    .promo-badge {
        font-size: 28px;
        padding: 12px 28px;
    }
    
    .badge-subtitle {
        font-size: 12px;
    }
    
    .promo-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .promo-item.promo-wrap {
        padding: 30px 25px;
    }
    
    .promo-image-float {
        float: none;
        width: 100%;
        height: 250px;
        margin: 20px 0;
    }
    
    .aesthetic-divider {
        padding: 50px 0;
    }
    
    .divider-ornament {
        gap: 20px;
    }
    
    .ornament-center svg {
        width: 60px;
        height: 60px;
    }
}
/* ===== HAMBURGER BUTTON MOVEMENT LOGIC ===== */

/* Sticky right group for language and hamburger */
.sticky-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger button styling */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* When hamburger is in sticky header */
.hamburger-menu.in-sticky {
    position: static;
    top: auto;
    right: auto;
}

#hamburgerPlaceholder {
    width: 50px;
    height: 50px;
}

/* ===== MENU TO ABOUT DIVIDER ===== */
.menu-about-divider {
    padding: 60px 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.menu-about-divider::before,
.menu-about-divider::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.menu-about-divider::before {
    top: -200px;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}

.menu-about-divider::after {
    bottom: -200px;
    right: 10%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.divider-waves {
    margin-bottom: 30px;
}

.divider-waves svg {
    width: 100%;
    height: auto;
    max-height: 120px;
    display: block;
}

.divider-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.star {
    color: var(--color-gold);
    font-size: 24px;
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.7;
}

.star:nth-child(2) {
    animation-delay: 0.5s;
    font-size: 32px;
}

.star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .sticky-right-group {
        gap: 10px;
    }
    
    .hamburger-menu {
        width: 45px;
        height: 45px;
    }
    
    #hamburgerPlaceholder {
        width: 45px;
        height: 45px;
    }
    
    .menu-about-divider {
        padding: 40px 0;
    }
    
    .divider-stars {
        gap: 25px;
    }
    
    .star {
        font-size: 20px;
    }
    
    .star:nth-child(2) {
        font-size: 26px;
    }
}
/* ===== FINAL AESTHETIC UPDATE ===== */

/* Remove backgrounds from decorative sections */
.aesthetic-divider,
.menu-about-divider {
    background: transparent !important;
    padding: 60px 0;
    position: relative;
    overflow: visible;
}

/* Smooth hamburger button transition */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1;
}

.hamburger-menu.in-sticky {
    position: static;
    top: auto;
    right: auto;
    opacity: 1;
}

/* ===== AESTHETIC DETAILS - DOTS, LINES, CORNERS ===== */

/* Dotted lines decoration */
.dotted-line-decoration {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1;
}

.dotted-line-decoration .dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.6;
}

/* Add dots to promotions section */
.promotions-section {
    position: relative;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-gold) 0px,
        var(--color-gold) 6px,
        transparent 6px,
        transparent 18px
    );
    opacity: 0.4;
}

/* Decorative corners for sections */
.section-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
}

.section-corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.section-corner.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.section-corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.section-corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Half-circles decoration */
.half-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    opacity: 0.25;
}

.half-circle.left {
    left: -40px;
    border-right: none;
}

.half-circle.right {
    right: -40px;
    border-left: none;
}

/* Dimmed background squares */
.dim-square {
    position: absolute;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

/* Add aesthetic details to gallery section */
.gallery-section {
    position: relative;
}

.gallery-section::before,
.gallery-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transform: rotate(45deg);
}

.gallery-section::before {
    top: 10%;
    left: -75px;
}

.gallery-section::after {
    bottom: 10%;
    right: -75px;
}

/* Add decorative lines to contacts section */
.contacts-section {
    position: relative;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--color-gold) 0px,
        var(--color-gold) 4px,
        transparent 4px,
        transparent 12px
    );
    opacity: 0.3;
}

/* Promo cards with corner accents */
.promo-item {
    position: relative;
}

.promo-item::before,
.promo-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.promo-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.promo-item:hover::before,
.promo-item:hover::after {
    opacity: 0.6;
}

/* About section with decorative elements */
.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Menu cards section decorations */
.menu-buttons-section {
    position: relative;
}

.menu-buttons-section::before {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 8px,
        var(--color-gold) 8px,
        var(--color-gold) 12px
    );
    opacity: 0.25;
}

/* Location cards with corner details */
.location-card {
    position: relative;
}

.location-card::before,
.location-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.location-card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.location-card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.location-card:hover::before,
.location-card:hover::after {
    opacity: 0.5;
}

/* Gallery items with floating elements */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    transform: translate(-10px, 10px) scale(1.5);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-corner {
        width: 40px;
        height: 40px;
    }
    
    .half-circle {
        width: 60px;
        height: 60px;
    }
    
    .half-circle.left {
        left: -30px;
    }
    
    .half-circle.right {
        right: -30px;
    }
    
    .about-section::before,
    .about-section::after {
        width: 60px;
        height: 60px;
    }
    
    .promotions-section::before,
    .contacts-section::before,
    .menu-buttons-section::before {
        width: 200px;
    }
}
/* ===== FIX LAYOUT SHIFT FROM HAMBURGER BUTTON ===== */

/* Prevent body overflow when hamburger is fixed */
body {
    overflow-x: hidden !important;
    position: relative;
}

/* Ensure hamburger doesn't cause layout shift */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    will-change: transform, opacity;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* When hamburger is in sticky header */
.hamburger-menu.in-sticky {
    position: static;
    top: auto;
    right: auto;
    opacity: 1;
}

/* Ensure container doesn't shift */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Fix hero section layout */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Sticky header positioning */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: top 0.4s ease;
    width: 100%;
}

.sticky-header.visible {
    top: 0;
}

/* Ensure content doesn't jump */
main {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hamburger-menu span {
        width: 22px;
    }
}
/* ===== REMOVE ELEMENTS THAT CAUSE OVERFLOW ===== */

/* Remove gallery rotated squares that cause horizontal scroll */
.gallery-section::before,
.gallery-section::after {
    display: none !important;
}

/* Remove half-circles that might overflow */
.half-circle.left,
.half-circle.right {
    display: none !important;
}

/* Remove about section circles that overflow */
.about-section::before,
.about-section::after {
    display: none !important;
}

/* Keep only safe decorative elements */
.gallery-section {
    position: relative;
    overflow: hidden !important;
}

/* Ensure body doesn't scroll horizontally */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Fix all sections to prevent overflow */
section {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Container should not overflow */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden !important;
}

/* Gallery item adjustments */
.gallery-item::before {
    display: none !important;
}

/* Keep only subtle decorations that don't overflow */
.promotions-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-gold) 0px,
        var(--color-gold) 6px,
        transparent 6px,
        transparent 18px
    );
    opacity: 0.4;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 80%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--color-gold) 0px,
        var(--color-gold) 4px,
        transparent 4px,
        transparent 12px
    );
    opacity: 0.3;
}

.menu-buttons-section::before {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    max-width: 60%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 8px,
        var(--color-gold) 8px,
        var(--color-gold) 12px
    );
    opacity: 0.25;
}

/* Mobile - remove even more decorations */
@media (max-width: 768px) {
    .section-corner {
        display: none !important;
    }
    
    .dim-square {
        display: none !important;
    }
}
/* ===== FIX DECORATIVE SECTIONS BACKGROUND ===== */

/* Match decorative sections to site background color */
.aesthetic-divider,
.menu-about-divider {
    background: var(--color-dark-secondary) !important;
    padding: 60px 0;
    position: relative !important;
    overflow: visible;
}

/* Ensure sections don't have fixed positioning */
.menu-buttons-section,
.aesthetic-divider,
.menu-about-divider,
.promotions-section,
.gallery-section,
.contacts-section,
.about-section {
    position: relative !important;
}

/* Remove any transforms that might cause issues */
section {
    transform: none !important;
    will-change: auto !important;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix container positioning */
.container {
    position: relative;
    transform: none !important;
}
/* ===== FIX ALL OVERFLOW ISSUES - REMOVE SCROLLBARS FROM SECTIONS ===== */

/* Remove ALL overflow from sections */
section,
.menu-buttons-section,
.promotions-section,
.gallery-section,
.contacts-section,
.about-section,
.quote-section,
.aesthetic-divider,
.menu-about-divider,
.hero,
.map-section {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* Remove overflow from containers */
.container,
.promotions-list,
.promotions-grid,
.gallery-grid,
.locations-grid,
.menu-carousel,
.carousel-track {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* Only body and html should control scroll */
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Fix menu buttons carousel - allow horizontal scroll ONLY for carousel container */
.menu-buttons-section .carousel-container {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbars but keep functionality */
.menu-buttons-section .carousel-container::-webkit-scrollbar {
    display: none;
}

.menu-buttons-section .carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Gallery items should not have overflow */
.gallery-item {
    overflow: hidden !important;
}

/* Promo items can have overflow for images */
.promo-item {
    overflow: hidden !important;
}

/* Location cards */
.location-card {
    overflow: visible !important;
}

/* Remove any clip-path or masks that might cause issues */
* {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Ensure proper stacking */
section {
    position: relative;
    z-index: auto;
}
/* ===== FIX CAROUSEL SCROLLING AND DECORATIVE BACKGROUNDS ===== */

/* OVERRIDE: Allow carousel to scroll horizontally */
.menu-buttons-section {
    overflow: visible !important;
}

.menu-buttons-section .carousel-container,
.menu-buttons-section .menu-carousel,
.carousel-container,
.menu-carousel {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.carousel-track {
    overflow: visible !important;
}

/* Keep scrollbars hidden for clean look */
.carousel-container::-webkit-scrollbar,
.menu-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-container,
.menu-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Fix decorative sections - ensure green background matches site */
.menu-about-divider,
.aesthetic-divider {
    background: var(--color-dark-secondary) !important;
    background-color: var(--color-dark-secondary) !important;
}

/* Ensure no black backgrounds anywhere in decorative elements */
.menu-about-divider *,
.aesthetic-divider * {
    background: transparent !important;
}

.menu-about-divider .container,
.aesthetic-divider .container {
    background: transparent !important;
}

/* Divider specific elements */
.divider-waves,
.divider-ornament,
.divider-stars,
.ornament-line,
.ornament-center {
    background: transparent !important;
}
/* ===== FINAL FIX FOR BLACK BACKGROUNDS IN DECORATIVE ELEMENTS ===== */

/* Force green background on all decorative sections and their children */
.menu-about-divider,
.aesthetic-divider,
.menu-about-divider > *,
.aesthetic-divider > * {
    background: var(--color-dark-secondary) !important;
    background-color: var(--color-dark-secondary) !important;
}

/* SVG containers */
.divider-waves,
.divider-ornament {
    background: var(--color-dark-secondary) !important;
    background-color: var(--color-dark-secondary) !important;
}

/* Star containers */
.divider-stars {
    background: var(--color-dark-secondary) !important;
    background-color: var(--color-dark-secondary) !important;
}

/* Remove any black backgrounds from pseudo-elements */
.menu-about-divider::before,
.menu-about-divider::after,
.aesthetic-divider::before,
.aesthetic-divider::after {
    background: transparent !important;
}

/* Ensure no element inside has black background */
.menu-about-divider div,
.aesthetic-divider div {
    background: transparent !important;
}

/* Container inside decorative sections */
.menu-about-divider .container,
.aesthetic-divider .container {
    background: transparent !important;
    background-color: transparent !important;
}
/* ===== FORCE GREEN BACKGROUND ON DECORATIVE DIVIDERS ===== */

/* Ultra specific selectors to override everything */
section.menu-about-divider,
section.aesthetic-divider {
    background: #2a3e2e !important;
    background-color: #2a3e2e !important;
}

/* Alternative - use the CSS variable */
.menu-about-divider,
.aesthetic-divider {
    background: var(--color-dark-secondary) !important;
    background-color: var(--color-dark-secondary) !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}

/* Remove any gradients or patterns */
.menu-about-divider::before,
.menu-about-divider::after,
.aesthetic-divider::before,
.aesthetic-divider::after {
    display: none !important;
}
/* ===== EXACT COLOR FIX - #101b17 (Dark Green) ===== */

/* Force EXACT color on decorative sections */
section.menu-about-divider,
section.aesthetic-divider,
.menu-about-divider,
.aesthetic-divider {
    background: #101b17 !important;
    background-color: #101b17 !important;
    background-image: none !important;
    position: relative !important;
}
/* ===== WINE CARD IMAGES ===== */

/* Wine card in index.html carousel */
.wine-menu .menu-card-bg {
    background: url('../images/vino.jpg') center/cover !important;
    background-image: url('../images/vino.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 2 !important;
    opacity: 0.3 !important;
}

/* Wine card in menu-select.html hub */
.hub-card[href="menu.html?type=wine"] .hub-card-bg {
    background-image: url('../images/vino.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 2 !important;
    opacity: 0.3 !important;
}

/* ===== REDUCE SPACING FOR DECORATIVE SECTIONS ===== */
/* Make menu and about sections closer together */
.menu-about-divider,
.aesthetic-divider,
section.menu-about-divider,
section.aesthetic-divider {
    padding: 30px 0 15px 0 !important;
}

@media (max-width: 768px) {
    .menu-about-divider,
    .aesthetic-divider,
    section.menu-about-divider,
    section.aesthetic-divider {
        padding: 20px 0 10px 0 !important;
    }
}

/* ===== HD QUALITY WAVES AND SMOOTH TRANSITIONS ===== */

/* High quality SVG rendering */
.divider-waves svg {
    shape-rendering: geometricPrecision;
    width: 100%;
    height: auto;
}

.divider-waves svg path {
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Smooth gradient transitions at top and bottom of decorative section */
.menu-about-divider::before,
.aesthetic-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #101b17 100%) !important;
    z-index: 1;
    pointer-events: none;
}

.menu-about-divider::after,
.aesthetic-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #101b17 0%, #0a0a0a 100%) !important;
    z-index: 1;
    pointer-events: none;
}

/* ===== ROTATING BALLS DECORATION ===== */

/* Container for balls - positioned at the border between sections */
.divider-balls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Individual ball - simple half and half design */
.ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(to right, #101b17 0%, #101b17 50%, #0a0a0a 50%, #0a0a0a 100%);
    animation: rotateBall 8s linear infinite;
}

/* Rotation animation */
@keyframes rotateBall {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ball {
        width: 50px;
        height: 50px;
    }

    .divider-balls {
        bottom: -25px;
        padding: 0 20px;
    }
}

/* ===== POSITION ABOUT SECTION FOR BALLS ===== */
.about-section {
    position: relative !important;
}

/* ===== SIDE BALLS FOR AESTHETIC DIVIDER ===== */
.divider-balls-side {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    z-index: 10;
}

.ball-side {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #101b17 0%, #101b17 50%, #0a0a0a 50%, #0a0a0a 100%);
    animation: rotateBall 8s linear infinite;
}

@media (max-width: 768px) {
    .divider-balls-side {
        padding: 0 20px;
    }
    .ball-side {
        width: 50px;
        height: 50px;
    }
}

/* ===== REDUCE PADDING ABOVE 'О HUGGA BAR' ===== */
.about-section {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 60px !important;
    }
}

/* ===== GOLD-GREEN BALLS ABOVE MENU ===== */
.menu-buttons {
    position: relative !important;
}

.menu-header-balls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.ball-gold {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #E9D09A 0%, #E9D09A 50%, #101b17 50%, #101b17 100%);
    animation: rotateBall 8s linear infinite;
}

@media (max-width: 768px) {
    .ball-gold {
        width: 50px;
        height: 50px;
    }
    .menu-header-balls {
        top: -25px;
    }
}

/* ===== OPTIMIZED HEADER DESIGN ===== */

/* Logo text in 2 lines */
.sticky-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 8px;
}

.sticky-logo-line1,
.sticky-logo-line2 {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-gold);
}

/* Compact Language Dropdown */
.language-dropdown {
    position: relative;
    margin-right: 10px;
}

.lang-dropdown-btn {
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(233, 208, 154, 0.1);
}

.lang-dropdown-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 5px;
    display: none;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
    min-width: 80px;
}

.lang-dropdown-menu.show {
    display: flex;
}

.lang-option {
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(233, 208, 154, 0.2);
}

.lang-option.active {
    background: rgba(233, 208, 154, 0.3);
}

/* WhatsApp Button */
.whatsapp-header-btn {
    background: #25D366;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
}

.whatsapp-header-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sticky-logo-line1,
    .sticky-logo-line2 {
        font-size: 14px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .whatsapp-header-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* ===== 2GIS MAP STYLING ===== */
.map-section {
    width: 100%;
    padding: 60px 20px;
    position: relative;
    background: var(--color-dark);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 10px 40px rgba(233, 208, 154, 0.2);
    position: relative;
}

.map-container iframe {
    border: none;
    filter: brightness(0.9) contrast(1.1);
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 15px;
    }

    .map-container {
        height: 350px;
        border-radius: 20px;
    }
}

/* ===== PHONE NUMBER STYLING ===== */
.booking-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.phone-number {
    color: var(--color-gold) !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    white-space: nowrap;
}

.booking-phone a {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}

/* Highlight important info */
.highlight-text {
    color: var(--color-gold);
    font-weight: 600;
}

/* ===== MOBILE FIX FOR LOCATION CARDS ===== */
@media (max-width: 480px) {
    .location-card {
        padding: 20px 15px !important;
    }

    .location-info p {
        font-size: 13px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .phone-number {
        font-size: 13px !important;
        letter-spacing: 0.2px;
    }

    .booking-phone {
        flex-wrap: wrap;
    }

    .booking-phone i {
        flex-shrink: 0;
    }

    .highlight-text {
        font-size: 13px;
        display: inline-block;
        max-width: 100%;
    }

    .location-info .fas,
    .location-info .fab {
        flex-shrink: 0;
        margin-right: 5px;
    }

    .menu-link {
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

/* ===== CAUTION TAPE (ОГРАДИТЕЛЬНАЯ ЛЕНТА) ===== */
.promo-image-float {
    position: relative;
    overflow: hidden;
}

.caution-tape {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 120%;
    height: 35px;
    background: repeating-linear-gradient(
        45deg,
        #FFD700,
        #FFD700 30px,
        #000000 30px,
        #000000 60px
    );
    transform: rotate(-12deg);
    z-index: 5;
    opacity: 0.95;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.caution-tape::before,
.caution-tape::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.3);
}

.caution-tape::before {
    left: 0;
}

.caution-tape::after {
    right: 0;
}

.tape-text {
    display: flex;
    white-space: nowrap;
    animation: scrollTape 20s linear infinite;
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.8),
        -1px -1px 1px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    will-change: transform;
}

.tape-text span {
    padding: 0 40px;
}

@keyframes scrollTape {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .caution-tape {
        height: 30px;
        top: 12%;
    }

    .tape-text {
        font-size: 12px;
    }

    .tape-text span {
        padding: 0 25px;
    }
}


/* ===== GALLERY CAPTION OVERLAY ===== */
.gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    padding: 20px;
    z-index: 10;
}

.gallery-caption span {
    color: var(--color-gold);
    font-size: 1.2em;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item.show-caption .gallery-caption {
    opacity: 1;
    pointer-events: auto;
}

.gallery-item.show-caption .gallery-caption span {
    transform: translateY(0);
}

.gallery-item.show-caption img {
    transform: scale(1.1);
    filter: blur(2px);
}

/* Cursor pointer for items with caption */
.gallery-item:has(.gallery-caption) {
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-caption span {
        font-size: 1em;
    }
}

/* ===== GALLERY MODAL ITEMS WITH CAPTION ===== */
.gallery-modal-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

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

.gallery-modal-item.has-caption {
    cursor: pointer;
}

.gallery-modal-item .gallery-caption {
    border-radius: 12px;
}

.gallery-modal-item.show-caption img {
    transform: scale(1.1);
    filter: blur(2px);
}

/* ===== FIX GALLERY MODAL ITEM HEIGHT ===== */
.gallery-modal-content .gallery-modal-item {
    height: 300px;
}

.gallery-modal-content .gallery-modal-item img {
    height: 100%;
}

.gallery-modal-item .gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    padding: 20px;
    z-index: 10;
    border-radius: 12px;
}

.gallery-modal-item .gallery-caption span {
    color: var(--color-gold);
    font-size: 1.2em;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-modal-item.show-caption .gallery-caption {
    opacity: 1;
    pointer-events: auto;
}

.gallery-modal-item.show-caption .gallery-caption span {
    transform: translateY(0);
}
