:root {
    --pearl-white: #FEFEFE;
    --champagne: #F7F3E9;
    --rose-gold: #E8B4B8;
    --sage-green: #9CAF88;
    --charcoal: #2F2F2F;
    --warm-grey: #6B6B6B;
    --accent-gold: #D4AF37;
    --soft-shadow: rgba(47, 47, 47, 0.08);
    --deep-shadow: rgba(47, 47, 47, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--pearl-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.crystal-loader {
    display: flex;
    gap: 8px;
    margin-bottom: 3rem;
}

.crystal {
    width: 12px;
    height: 12px;
    background: var(--rose-gold);
    border-radius: 2px;
    animation: crystal-dance 1.4s ease-in-out infinite;
}

.crystal:nth-child(2) { animation-delay: 0.2s; }
.crystal:nth-child(3) { animation-delay: 0.4s; }

@keyframes crystal-dance {
    0%, 80%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
    40% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.preloader-tagline {
    font-size: 1rem;
    color: var(--warm-grey);
    font-weight: 300;
    letter-spacing: 1px;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--rose-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.element:nth-child(1) { left: 10%; animation-delay: 0s; }
.element:nth-child(2) { left: 30%; animation-delay: 5s; }
.element:nth-child(3) { left: 70%; animation-delay: 10s; }
.element:nth-child(4) { left: 90%; animation-delay: 15s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}



.time-display {
    position: fixed;
    top: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--rose-gold);
    z-index: 1000;
}

.current-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.greeting {
    font-size: 0.9rem;
    color: var(--warm-grey);
    font-weight: 300;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--pearl-white) 50%, #F5F1E8 100%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(232, 180, 184, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.brand-mark {
    margin-bottom: 3rem;
}

.ornament {
    width: 60px;
    height: 1px;
    background: var(--rose-gold);
    margin: 0 auto;
    position: relative;
}

.ornament::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--rose-gold);
    border-radius: 50%;
}

.ornament.top { margin-bottom: 2rem; }
.ornament.bottom { margin-top: 2rem; }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-style: italic;
}

.tagline {
    font-size: 1.2rem;
    color: var(--warm-grey);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--warm-grey);
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--warm-grey);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--rose-gold);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.navigation {
    position: sticky;
    top: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 180, 184, 0.2);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-item {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-grey);
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--charcoal);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.section-description {
    font-size: 1.1rem;
    color: var(--warm-grey);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.title-ornament {
    width: 80px;
    height: 1px;
    background: var(--rose-gold);
    margin: 0 auto;
    position: relative;
}

.title-ornament::before,
.title-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--rose-gold);
    border-radius: 50%;
}

.title-ornament::before { left: -10px; }
.title-ornament::after { right: -10px; }

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.classic-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--pearl-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--soft-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--deep-shadow);
}

.dish-card.featured {
    border: 1px solid var(--rose-gold);
}

.dish-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--rose-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

.dish-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.signature-1 { background: linear-gradient(135deg, #E8B4B8 0%, #9CAF88 100%); }
.signature-2 { background: linear-gradient(135deg, #F7F3E9 0%, #E8B4B8 100%); }
.signature-3 { background: linear-gradient(135deg, #9CAF88 0%, #D4AF37 100%); }
.signature-4 { background: linear-gradient(135deg, #D4AF37 0%, #F7F3E9 100%); }
.classic-1 { background: linear-gradient(135deg, #E8B4B8 0%, #F7F3E9 100%); }
.classic-2 { background: linear-gradient(135deg, #9CAF88 0%, #E8B4B8 100%); }
.classic-3 { background: linear-gradient(135deg, #D4AF37 0%, #9CAF88 100%); }
.classic-4 { background: linear-gradient(135deg, #F7F3E9 0%, #D4AF37 100%); }
.classic-5 { background: linear-gradient(135deg, #E8B4B8 0%, #9CAF88 100%); }
.classic-6 { background: linear-gradient(135deg, #D4AF37 0%, #E8B4B8 100%); }
.signature-5 { background: linear-gradient(135deg, #2F2F2F 0%, #D4AF37 100%); }
.signature-6 { background: linear-gradient(135deg, #9CAF88 0%, #F7F3E9 100%); }
.viennois-1 { background: linear-gradient(135deg, #F7F3E9 0%, #E8B4B8 100%); }
.viennois-2 { background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%); }
.viennois-3 { background: linear-gradient(135deg, #D4AF37 0%, #F7F3E9 100%); }
.viennois-4 { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.healthy-1 { background: linear-gradient(135deg, #9CAF88 0%, #E8B4B8 100%); }
.healthy-2 { background: linear-gradient(135deg, #228B22 0%, #32CD32 100%); }
.healthy-3 { background: linear-gradient(135deg, #00FF7F 0%, #98FB98 100%); }
.healthy-4 { background: linear-gradient(135deg, #FA8072 0%, #FFA07A 100%); }
.healthy-5 { background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 100%); }
.healthy-6 { background: linear-gradient(135deg, #90EE90 0%, #98FB98 100%); }
.viennois-5 { background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%); }
.viennois-6 { background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%); }
.dessert-1 { background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%); }
.dessert-2 { background: linear-gradient(135deg, #F5DEB3 0%, #FFE4B5 100%); }
.dessert-3 { background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 100%); }
.dessert-4 { background: linear-gradient(135deg, #4B0082 0%, #8B008B 100%); }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.dish-content {
    padding: 2rem;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
}

.dish-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--rose-gold);
    white-space: nowrap;
    margin-left: 1rem;
}

.dish-description {
    font-size: 0.95rem;
    color: var(--warm-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dish-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--warm-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preparation-time,
.dietary-info {
    padding: 0.3rem 0.8rem;
    background: var(--champagne);
    border-radius: 12px;
    font-weight: 500;
}

.dish-card.classic {
    text-align: center;
}

.classic .dish-content {
    padding: 1.5rem;
}

.classic .dish-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.classic .dish-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.classic .dish-price {
    font-size: 1.4rem;
    margin: 0;
}

.footer {
    background: var(--champagne);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(232, 180, 184, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.footer-brand p,
.footer-info p {
    color: var(--warm-grey);
    font-size: 0.9rem;
    font-weight: 300;
}

.beverages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.beverage-category {
    background: var(--pearl-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--soft-shadow);
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--rose-gold);
}

.beverage-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beverage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dotted var(--rose-gold);
    transition: all 0.3s ease;
}

.beverage-item:last-child {
    border-bottom: none;
}

.beverage-item:hover {
    padding-left: 0.5rem;
    background: var(--champagne);
    border-radius: 8px;
    border-bottom: 1px dotted transparent;
}

.beverage-name {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 400;
}

.beverage-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rose-gold);
}

@media (max-width: 768px) {
    .logo { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .nav-container { flex-wrap: wrap; gap: 2rem; }
    .dishes-grid { grid-template-columns: 1fr; }
    .beverages-grid { grid-template-columns: 1fr; }
    .time-display { position: relative; margin: 1rem; }
}