/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --dark-black: #0f0f0f;
    --charcoal: #1a1a1a;
    --gold: #c9a961;
    --gold-dark: #9d8147;
    --gold-light: #e6d5b3;
    --gold-accent: #d4af37;
    --text-light: #f5f5f5;
    --text-gray: #c0c0c0;
    --text-dark: #888888;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 1px rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    overflow: visible;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
    display: block;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    transform: scale(1.03);
}

.logo-svg {
    height: 100%;
    width: auto;
    max-width: 320px;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
}

.logo:hover .logo-svg {
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    transform: scale(1.03);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 3.5px;
    transition: all 0.4s ease;
}

.logo:hover .logo-text {
    letter-spacing: 3.5px;
}

.logo-underline {
    transition: all 0.4s ease;
    opacity: 0.5;
    stroke-width: 1;
}

.logo:hover .logo-underline {
    opacity: 0.5;
    stroke-width: 1;
}


.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    transition: all 0.3s ease;
    font-weight: 300;
    opacity: 0.6;
}

.lang-btn.active {
    color: var(--gold);
    opacity: 1;
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--gold-light);
    opacity: 1;
}

.lang-separator {
    color: var(--text-gray);
    opacity: 0.5;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/VK_001_hero.webp') center/cover no-repeat;
    opacity: 0.35;
    z-index: 1;
    animation: zoomIn 25s ease-in-out infinite alternate;
    filter: grayscale(20%) contrast(1.05) brightness(0.9);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(201, 169, 97, 0.4);
    letter-spacing: 4px;
    line-height: 1.2;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 97, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    color: var(--gold-light);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 
        0 10px 30px rgba(201, 169, 97, 0.3),
        0 0 20px rgba(201, 169, 97, 0.2),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover::after {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
}

/* About Section */
/* Welcome Section */
.welcome-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--primary-black) 100%);
    position: relative;
    padding: 6rem 0 2rem 0;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
}

.welcome-image-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.welcome-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 169, 97, 0.2);
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s ease, opacity 0.6s ease;
}

.welcome-image-item:hover .welcome-image {
    filter: grayscale(0%) contrast(1.1);
}

/* Hover image transition effect */
.welcome-image-hover {
    position: relative;
}

.welcome-image-primary {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.welcome-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    filter: grayscale(20%) contrast(1.05);
    transition: opacity 0.6s ease, filter 0.4s ease;
}

.welcome-image-hover:hover .welcome-image-primary {
    opacity: 0;
}

.welcome-image-hover:hover .welcome-image-secondary {
    opacity: 1;
    filter: grayscale(0%) contrast(1.1);
}

.welcome-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--gold);
    padding: 1.5rem 1rem 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.welcome-content {
    padding: 2rem 0;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.welcome-text p {
    margin-bottom: 1.5rem;
}

.welcome-text p:last-child {
    margin-bottom: 0;
}

.about {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--charcoal) 100%);
    position: relative;
    padding: 2rem 0 6rem 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 2rem 0;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-signature {
    text-align: center;
    font-style: italic;
    color: var(--gold-light) !important;
    font-size: 1.2rem !important;
    margin-top: 2rem !important;
    font-family: 'Playfair Display', serif;
}

.about-images {
    display: block;
    max-width: 500px;
}

.about-image-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 169, 97, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s ease, opacity 0.6s ease;
}

.about-image-item:hover .about-image {
    filter: grayscale(0%) contrast(1.1);
}

/* Hover image transition effect for About section */
.about-image-hover {
    position: relative;
}

.about-image-primary {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.about-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    filter: grayscale(20%) contrast(1.05);
    transition: opacity 0.6s ease, filter 0.4s ease;
}

.about-image-hover:hover .about-image-primary {
    opacity: 0;
}

.about-image-hover:hover .about-image-secondary {
    opacity: 1;
    filter: grayscale(0%) contrast(1.1);
}

/* Menu Section */
.menu {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--primary-black) 100%);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.menu-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.menu-download-card {
    background: rgba(15, 15, 15, 0.6);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-download-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(201, 169, 97, 0.1);
    background: rgba(15, 15, 15, 0.8);
}

.menu-download-card:hover::before {
    opacity: 1;
}

.menu-download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--gold);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-download-card:hover .menu-download-icon {
    color: var(--gold-light);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(201, 169, 97, 0.4));
}

.menu-download-icon i {
    font-size: 3.5rem;
    line-height: 1;
}

.menu-download-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.menu-download-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.menu-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.menu-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.4s ease;
}

.menu-download-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
}

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

.menu-download-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.menu-download-btn:hover svg {
    transform: translateY(3px);
}

.menu-download-btn span {
    position: relative;
    z-index: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category {
    background: rgba(15, 15, 15, 0.6);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-category:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(201, 169, 97, 0.1);
    background: rgba(15, 15, 15, 0.8);
}

.menu-category:hover::before {
    opacity: 1;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
}

.price {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.menu-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
/* Features Carousel Section */
.features-carousel {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--primary-black) 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.features-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.carousel-image-side {
    position: relative;
}

.carousel-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 97, 0.1);
    background: rgba(15, 15, 15, 0.8);
}

.carousel-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.carousel-image-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.1);
    transition: filter 0.6s ease;
}

.carousel-image-slide.active .carousel-image {
    filter: grayscale(0%) contrast(1.1);
}

.carousel-nav-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 97, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.carousel-dot.active {
    border-color: var(--gold);
}

.carousel-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.carousel-dot:hover {
    border-color: var(--gold-light);
    transform: scale(1.2);
}

.carousel-text-side {
    position: relative;
    min-height: 400px;
    padding-bottom: 3.5rem;
}

.carousel-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.carousel-text-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.carousel-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.carousel-text:last-child {
    margin-bottom: 0;
}


/* Responsive Design for Features Carousel */
@media (max-width: 968px) {
    .carousel-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .carousel-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .carousel-text-side {
        min-height: 350px;
    }
    
    .carousel-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .welcome-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-images,
    .about-images {
        order: -1;
    }
    
    .welcome-title,
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .about {
        padding: 4rem 0;
    }
    
    .features-carousel {
        padding: 4rem 0;
    }
    
    .welcome-title,
    .about-title {
        font-size: 2rem;
    }
    
    .welcome-text,
    .about-text {
        font-size: 1rem;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .welcome-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-text-side {
        min-height: 300px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-nav-dots {
        gap: 0.75rem;
    }
}

.gallery {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--charcoal) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.1);
    background: rgba(15, 15, 15, 0.5);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(201, 169, 97, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    filter: grayscale(20%) contrast(1.05);
    opacity: 0;
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item img.loading {
    opacity: 0.3;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.1);
}

.gallery-item-hidden {
    display: none;
}

.gallery-item-hidden.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.gallery-item-hidden.hiding {
    display: block;
    animation: fadeOutDown 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.gallery-load-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.gallery-load-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.4s ease;
}

.gallery-load-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
}

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

.gallery-load-btn.expanded .load-btn-arrow {
    transform: rotate(180deg);
}

.gallery-load-btn.expanded {
    padding: 1rem 2.5rem;
}

.load-btn-text,
.load-btn-text-less {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.load-btn-arrow {
    width: 18px;
    height: 18px;
    color: currentColor;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--primary-black) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.contact-card {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.contact-card-inner {
    position: relative;
    height: 100%;
    padding: 3rem;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.contact-card:hover .contact-card-inner {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-8px);
    background: rgba(15, 15, 15, 0.7);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(201, 169, 97, 0.2);
}

.contact-card:hover .contact-card-inner::before {
    opacity: 1;
}

.contact-card:hover .contact-card-inner::after {
    opacity: 1;
}

.contact-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.contact-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.8);
}

.contact-card:hover .contact-icon-bg {
    opacity: 1;
    transform: scale(1.2);
}

.contact-icon {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--gold);
    stroke: currentColor;
    fill: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

.contact-card:hover .contact-icon {
    color: var(--gold-light);
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.6));
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 5;
}

.contact-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-value div {
    margin-bottom: 0.3rem;
}

.contact-value a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.contact-value a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.contact-value a:hover::after {
    width: 100%;
}

.contact-card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-card-decoration {
    opacity: 0.6;
    transform: scaleX(1);
}

.contact-card-hours {
    min-height: auto;
}

.contact-card-hours .contact-card-inner {
    min-height: 280px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1rem;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.working-hours.collapsed {
    max-height: 120px;
}

.working-hours.expanded {
    max-height: 1000px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
    transition: all 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
    opacity: 1;
    max-height: 50px;
    overflow: hidden;
}

.hours-row.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    border-bottom-color: rgba(201, 169, 97, 0.2);
    padding-left: 0.5rem;
}

.hours-day {
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hours-time {
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.hours-row:hover .hours-day {
    color: var(--text-light);
}

.hours-row:hover .hours-time {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(201, 169, 97, 0.3);
}

.contact-value a {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.phone-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.phone-link {
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.hours-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.hours-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.4s ease;
}

.hours-toggle:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
}

.hours-toggle:hover::before {
    left: 100%;
}

.hours-toggle-text {
    position: relative;
    z-index: 1;
}

.hours-toggle-arrow {
    width: 16px;
    height: 16px;
    color: currentColor;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.hours-toggle.expanded .hours-toggle-arrow {
    transform: rotate(180deg);
}

.hours-toggle.expanded .hours-toggle-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
}

.hours-toggle.expanded {
    padding: 0.8rem;
}

.hours-toggle:not(.expanded) .hours-toggle-text {
    opacity: 1;
    max-width: 200px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

/* Social Media Section in Contact */
.social-media-section {
    margin-top: 4rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 2px;
    text-decoration: none;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(201, 169, 97, 0.1);
    background: rgba(15, 15, 15, 0.8);
    color: var(--gold-light);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 48px;
    height: 48px;
    transition: all 0.4s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.4));
}

.social-link span {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomInLightbox 0.3s ease;
}

@keyframes zoomInLightbox {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--gold);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left (for images) */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right (for text) */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    .logo-img,
    .logo-svg {
        max-width: 240px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .menu-downloads {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .menu-download-card {
        padding: 2.5rem 2rem;
    }

    .menu-download-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .menu-download-icon i {
        font-size: 2.5rem;
    }

    .menu-download-title {
        font-size: 1.7rem;
    }

    .menu-download-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .social-media-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .social-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        padding: 1.5rem 2rem;
        min-width: 130px;
    }

    .social-link svg {
        width: 40px;
        height: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .nav-controls {
        gap: 1rem;
    }
    
    .lang-switcher {
        font-size: 0.75rem;
    }
    
    .lang-btn {
        padding: 0.25rem 0.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        min-height: 240px;
    }

    .contact-card-inner {
        padding: 2rem;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .contact-card-hours .contact-card-inner {
        min-height: auto;
    }

    .working-hours {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .hours-row {
        padding: 0.3rem 0;
    }

    .hours-time {
        font-size: 0.85rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-category {
        padding: 1.5rem;
    }
}
