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

:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f4e6a1;
    --dark-gold: #b8941f;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark-gray: #888888;
    --accent-red: #dc2626;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

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

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.logo-3d {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.logo-3d span {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 
        0 0 20px var(--primary-gold),
        0 0 40px var(--primary-gold),
        0 0 60px var(--primary-gold);
    animation: letterFloat 2s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

.logo-3d span:nth-child(1) { animation-delay: 0s; }
.logo-3d span:nth-child(2) { animation-delay: 0.1s; }
.logo-3d span:nth-child(3) { animation-delay: 0.2s; }
.logo-3d span:nth-child(4) { animation-delay: 0.3s; }
.logo-3d span:nth-child(5) { animation-delay: 0.4s; }
.logo-3d span:nth-child(6) { animation-delay: 0.5s; }
.logo-3d span:nth-child(7) { animation-delay: 0.6s; }

@keyframes letterFloat {
    0% { 
        transform: translateY(0px) rotateY(0deg) scale(1); 
        text-shadow: 0 0 20px var(--primary-gold);
    }
    100% { 
        transform: translateY(-20px) rotateY(360deg) scale(1.1); 
        text-shadow: 0 0 40px var(--primary-gold), 0 0 60px var(--primary-gold);
    }
}

.loading-bar {
    width: 350px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loadingProgress 3s ease-in-out forwards;
    box-shadow: 0 0 20px var(--shadow-gold);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInText 1s ease-in 2s forwards;
}

@keyframes fadeInText {
    to { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-3d-small {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--primary-gold);
    transform: perspective(1000px) rotateY(15deg);
    transition: all 0.3s ease;
}

.logo-3d-small:hover {
    transform: perspective(1000px) rotateY(15deg) scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

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

.reserve-btn {
    background: var(--gradient-primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--dark-bg) !important;
    box-shadow: 0 4px 20px var(--shadow-gold);
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-gold);
}

.reserve-btn::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 40px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, var(--dark-bg) 70%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="30" cy="30" r="1" fill="%23d4af37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="70" cy="20" r="1" fill="%23d4af37" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="90" cy="80" r="1" fill="%23d4af37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite"/></circle></svg>');
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: floatAround 20s ease-in-out infinite;
    filter: blur(1px);
}

.floating-plate {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-fork {
    top: 70%;
    right: 12%;
    animation-delay: 4s;
}

.floating-wine {
    bottom: 25%;
    left: 15%;
    animation-delay: 8s;
}

.floating-chef-hat {
    top: 40%;
    right: 20%;
    animation-delay: 12s;
}

.floating-spoon {
    bottom: 60%;
    right: 8%;
    animation-delay: 16s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) rotate(90deg) scale(1.2); }
    50% { transform: translateY(-80px) rotate(180deg) scale(0.8); }
    75% { transform: translateY(-40px) rotate(270deg) scale(1.1); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-3d {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.title-3d {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: perspective(1000px) rotateX(15deg);
    text-shadow: 0 15px 30px var(--shadow-gold);
    animation: titleFloat 4s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

.title-3d:nth-child(2) { animation-delay: 0.7s; }
.title-3d:nth-child(3) { animation-delay: 1.4s; }

@keyframes titleFloat {
    0% { 
        transform: perspective(1000px) rotateX(15deg) translateY(0px);
        text-shadow: 0 15px 30px var(--shadow-gold);
    }
    100% { 
        transform: perspective(1000px) rotateX(15deg) translateY(-15px);
        text-shadow: 0 25px 50px var(--shadow-gold);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--primary-gold);
    animation: statGlow 3s ease-in-out infinite alternate;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes statGlow {
    0% { text-shadow: 0 0 15px var(--primary-gold); }
    100% { text-shadow: 0 0 25px var(--primary-gold), 0 0 35px var(--primary-gold); }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn {
    position: relative;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(15px);
}

.glow-btn {
    box-shadow: 0 0 30px var(--shadow-gold);
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--shadow-gold);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.dish-3d {
    position: relative;
    width: 500px;
    height: 500px;
}

.dish-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: dishRotate 15s linear infinite;
}

@keyframes dishRotate {
    0% { transform: rotateY(0deg) rotateX(15deg); }
    100% { transform: rotateY(360deg) rotateX(15deg); }
}

.dish-plate {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-gold), var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    box-shadow: 
        0 30px 60px var(--shadow-gold),
        inset 0 0 50px rgba(255, 255, 255, 0.2);
}

.dish-food {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 150px;
    height: 80px;
    background: linear-gradient(45deg, #8B4513, #CD853F, #DEB887);
    border-radius: 75px 75px 40px 40px;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.4);
}

.dish-garnish {
    position: absolute;
    top: 35%;
    left: 45%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #32CD32, #228B22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.steam-particles {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 120px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 15px;
    animation: steam 3s ease-in-out infinite;
}

@keyframes steam {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(0px) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(-30px) scale(1.2); 
    }
    100% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-60px) scale(1.5); 
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    margin: 0 auto 10px;
    border-radius: 1px;
}

.scroll-arrow {
    color: var(--primary-gold);
    font-size: 1.2rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(5px); }
}

/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
    transform: perspective(1000px) rotateX(10deg);
    text-shadow: 0 10px 30px var(--shadow-gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--shadow-gold);
}

/* About Section */
.about {
    background: var(--gradient-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 50px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-gold);
}

.text-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.achievement-list {
    margin-bottom: 40px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.achievement i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--primary-gold);
    animation: statPulse 3s ease-in-out infinite alternate;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes statPulse {
    0% { text-shadow: 0 0 15px var(--primary-gold); }
    100% { text-shadow: 0 0 25px var(--primary-gold), 0 0 35px var(--primary-gold); }
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.chef-scene {
    position: relative;
    width: 400px;
    height: 500px;
}

.chef-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.chef-silhouette {
    width: 250px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 125px 125px 30px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.cooking-effects {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 100px;
    height: 100px;
}

.flame-effect {
    width: 40px;
    height: 60px;
    background: radial-gradient(circle, #ff6b35, #ff8e53, #ffab40);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame 1.5s ease-in-out infinite alternate;
    position: relative;
}

@keyframes flame {
    0% { 
        transform: scale(1) rotate(-3deg); 
        background: radial-gradient(circle, #ff6b35, #ff8e53);
    }
    100% { 
        transform: scale(1.2) rotate(3deg); 
        background: radial-gradient(circle, #ff8e53, #ffab40);
    }
}

.smoke-effect {
    position: absolute;
    top: -30px;
    left: 15px;
    width: 25px;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 15px;
    animation: smoke 4s ease-in-out infinite;
}

@keyframes smoke {
    0% { 
        opacity: 0.7; 
        transform: translateY(0px) scale(1) rotate(0deg); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-60px) scale(1.8) rotate(45deg); 
    }
}

.sparkle-effects {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 60px;
    height: 60px;
}

.sparkle-effects::before,
.sparkle-effects::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-effects::before {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.sparkle-effects::after {
    bottom: 15px;
    right: 10px;
    animation-delay: 1s;
}

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

.chef-tools {
    position: absolute;
    bottom: 20%;
    left: 15%;
}

.tool {
    position: absolute;
    background: var(--text-gray);
    border-radius: 3px;
}

.knife {
    width: 60px;
    height: 8px;
    transform: rotate(45deg);
    animation: toolFloat 3s ease-in-out infinite alternate;
}

.pan {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 30px;
    left: 20px;
    animation: toolFloat 3s ease-in-out infinite alternate-reverse;
}

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

/* Philosophy Section */
.philosophy {
    background: var(--dark-bg);
    padding: 100px 0;
}

.philosophy-content {
    text-align: center;
}

.philosophy-text {
    margin-bottom: 80px;
}

.philosophy-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 10px 30px var(--shadow-gold);
}

.philosophy-text p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.pillar {
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-gold);
}

.pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.pillar p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Menu Section */
.menu {
    background: var(--darker-bg);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 35px;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-tab i {
    font-size: 1.2rem;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--dark-bg);
    background: var(--gradient-primary);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--shadow-gold);
}

.menu-category {
    display: none;
    position: relative;
    z-index: 2;
}

.menu-category.active {
    display: block;
}

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

.menu-item-3d {
    perspective: 1000px;
}

.menu-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.menu-card:hover {
    transform: rotateY(8deg) rotateX(8deg) translateZ(30px);
    box-shadow: 0 30px 60px var(--shadow-dark);
}

.card-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    blur: 10px;
}

.menu-card:hover .card-glow {
    opacity: 0.8;
}

.menu-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.food-preview {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-card:hover .food-preview {
    transform: scale(1.05);
}

/* Food Preview Styles */
.appetizer-1 {
    background: linear-gradient(45deg, #8B4513, #CD853F, #DEB887);
    position: relative;
}

.appetizer-1::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    border-radius: 50%;
    animation: foodGlow 3s ease-in-out infinite alternate;
}

.appetizer-2 {
    background: linear-gradient(45deg, #FFE4E1, #FFA07A, #FF6347);
    position: relative;
}

.appetizer-2::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: foodShimmer 2s ease-in-out infinite;
}

.appetizer-3 {
    background: linear-gradient(45deg, #F0F8FF, #B0E0E6, #87CEEB);
    position: relative;
}

@keyframes foodGlow {
    0% { 
        opacity: 0.6; 
        transform: scale(1); 
        filter: brightness(1);
    }
    100% { 
        opacity: 0.9; 
        transform: scale(1.1); 
        filter: brightness(1.2);
    }
}

@keyframes foodShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.main-1 {
    background: linear-gradient(45deg, #8B0000, #DC143C, #FF6347);
    position: relative;
}

.main-2 {
    background: linear-gradient(45deg, #FF4500, #FF6347, #FF7F50);
    position: relative;
}

.main-3 {
    background: linear-gradient(45deg, #654321, #8B4513, #A0522D);
    position: relative;
}

.dessert-1 {
    background: linear-gradient(45deg, #2F1B14, #4A2C2A, #6F4E37);
    position: relative;
}

.dessert-2 {
    background: linear-gradient(45deg, #FFF8DC, #F5DEB3, #DEB887);
    position: relative;
}

.dessert-3 {
    background: linear-gradient(45deg, #8B4513, #CD853F, #F4A460);
    position: relative;
}

.wine-1 {
    background: linear-gradient(45deg, #722F37, #8B0000, #A0522D);
    position: relative;
}

.wine-2 {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    position: relative;
}

.wine-3 {
    background: linear-gradient(45deg, #4B0082, #663399, #8A2BE2);
    position: relative;
}

.menu-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--primary-gold);
}

.menu-details p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Chef Section */
.chef-section {
    background: var(--gradient-dark);
    position: relative;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.chef-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.chef-photo {
    position: relative;
    width: 350px;
    height: 350px;
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: frameRotate 20s linear infinite;
}

@keyframes frameRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chef-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A4A4A, #6A6A6A, #8A8A8A);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.chef-avatar::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.chef-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: chefGlow 4s ease-in-out infinite alternate;
}

@keyframes chefGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.chef-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    text-shadow: 0 10px 30px var(--shadow-gold);
}

.chef-title {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chef-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.chef-achievements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.achievement-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--primary-gold);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-gold);
    border-left: 4px solid var(--primary-gold);
    padding-left: 25px;
    margin: 30px 0;
    text-shadow: 0 0 10px var(--shadow-gold);
}

/* Gallery Section */
.gallery {
    background: var(--dark-bg);
    position: relative;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--gradient-primary);
}

.gallery-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:nth-child(1) .gallery-image {
    background: linear-gradient(45deg, #8B4513, #CD853F);
}

.gallery-item:nth-child(2) .gallery-image {
    background: linear-gradient(45deg, #2C1810, #4A4A4A);
}

.gallery-item:nth-child(3) .gallery-image {
    background: linear-gradient(45deg, #FF6347, #FF8C00);
}

.gallery-item:nth-child(4) .gallery-image {
    background: linear-gradient(45deg, #722F37, #8B0000);
}

.gallery-item:nth-child(5) .gallery-image {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-dark);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-dark);
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin: 0 3px;
    text-shadow: 0 0 10px var(--primary-gold);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.author-info h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots::before,
.testimonial-dots::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--text-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots::before {
    background: var(--primary-gold);
}

/* Events Section */
.events {
    background: var(--dark-bg);
    position: relative;
}

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

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px var(--shadow-dark);
}

.event-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--primary-gold);
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.event-card > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.event-features {
    list-style: none;
    margin-bottom: 40px;
}

.event-features li {
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.event-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-gold);
}

/* Experience Section */
.experience {
    background: var(--gradient-dark);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.experience-card {
    perspective: 1000px;
    height: 350px;
}

.card-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: pointer;
}

.experience-card:hover .card-3d {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-front {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
}

.card-back {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: rotateY(180deg);
}

.experience-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-gold);
}

.card-front h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.card-front p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.card-back h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.card-back p {
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 10px 30px var(--shadow-gold);
}

.contact-info > p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px var(--shadow-gold);
}

.contact-text h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.social-link {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    transform: translateY(-8px);
    background: var(--primary-gold);
    color: var(--dark-bg);
    box-shadow: 0 15px 30px var(--shadow-gold);
}

/* Form Styles */
.form-3d {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 50px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.form-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.form-3d h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-gold);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -12px;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.submit-btn {
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    padding: 20px;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo p {
    color: var(--text-gray);
    margin: 20px 0 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.award i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary-gold);
}

.link-group h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.link-group a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-newsletter {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-newsletter h4 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-newsletter p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: -450px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: all 0.4s ease;
    z-index: 10000;
    min-width: 400px;
    max-width: 400px;
}

.notification.show {
    right: 30px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.notification-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--primary-gold);
}

.notification-text {
    color: var(--text-light);
    font-weight: 500;
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.notification-close:hover {
    color: var(--primary-gold);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.slide-up {
    transform: translateY(80px);
    opacity: 0;
    transition: all 1s ease;
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hide loading screen */
body.loaded .loading-screen {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease 0.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }
    
    .about-content,
    .contact-content {
        gap: 60px;
    }
    
    .chef-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        padding: 50px 0;
        transition: 0.4s;
        border-radius: 0 0 25px 25px;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .dish-3d {
        width: 350px;
        height: 350px;
    }
    
    .about-content,
    .contact-content,
    .chef-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .hero {
        padding: 0 25px;
    }
    
    .nav-container {
        padding: 0 25px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-3d span {
        font-size: 2.5rem;
    }
    
    .dish-3d {
        width: 300px;
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .glass-card,
    .form-3d,
    .testimonial-card,
    .event-card {
        padding: 30px;
    }
    
    .contact-details {
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .notification {
        right: -100%;
        min-width: 90%;
        max-width: 90%;
    }
    
    .notification.show {
        right: 5%;
    }
}

/* High-end animations for premium feel */
@keyframes premiumGlow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--shadow-gold);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 40px var(--shadow-gold), 0 0 60px var(--shadow-gold);
        filter: brightness(1.2);
    }
}

.premium-glow {
    animation: premiumGlow 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.premium-hover:hover {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Luxury border animation */
@keyframes luxuryBorder {
    0% { border-image-source: linear-gradient(0deg, var(--primary-gold), var(--secondary-gold)); }
    25% { border-image-source: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold)); }
    50% { border-image-source: linear-gradient(180deg, var(--primary-gold), var(--secondary-gold)); }
    75% { border-image-source: linear-gradient(270deg, var(--primary-gold), var(--secondary-gold)); }
    100% { border-image-source: linear-gradient(360deg, var(--primary-gold), var(--secondary-gold)); }
}

.luxury-border {
    border: 2px solid;
    border-image-slice: 1;
    animation: luxuryBorder 4s linear infinite;
}