:root {
    --bg-dark: #0d0a0f;
    --bg-card: #141016;
    --gold: #d4b483;
    --white: #f5f5f5;
    --muted: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    font-size: 16px; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } 
/* Header */
header { padding: 20px 0; background: rgba(13,10,15,0.96); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(212,180,131,0.08); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); font-weight: 700; letter-spacing: 0.5px; }
nav a { color: var(--white); text-decoration: none; margin-left: 30px; font-size: 13px; letter-spacing: 1.2px; font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--gold); }
.btn-contacts { background: var(--gold); color: #000 !important; padding: 10px 24px; border-radius: 20px; font-weight: 600; }

/* Hero — ТУТ ОСНОВНЫЕ ИЗМЕНЕНИЯ РАЗМЕРОВ */
.hero { padding: 100px 0; min-height: 85vh; display: flex; align-items: center; }
.hero-content { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 90px; color: var(--gold); line-height: 0.95; margin: 20px 0; } /* УВЕЛИЧЕНО: огромный заголовок */
.welcome-tag { border: 1px solid var(--gold); display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 11px; color: var(--gold); letter-spacing: 1.5px; }
.hero-text p { font-size: 16px; color: #d0d0d0; max-width: 450px; } /* УВЕЛИЧЕНО */
.hero-btns { margin-top: 35px; display: flex; gap: 15px; }
.btn-primary { background: var(--gold); color: #000; padding: 15px 35px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-outline { border: 1px solid var(--muted); color: var(--white); padding: 15px 35px; border-radius: 30px; text-decoration: none; font-size: 14px; transition: 0.3s; }
.btn-primary:hover { transform: scale(1.05); }

/* ФОТО В КРУГЕ */
.hero-circle-img { width: 500px; height: 500px; border: 1px solid rgba(212,180,131,0.15); border-radius: 50%; padding: 0; overflow: hidden; } /* УВЕЛИЧЕНО до 500px */
.hero-circle-img img { width: 100%; height: 100%; object-fit: cover; }

/* Sections Shared */
.section-tag-gold { color: var(--gold); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-title-white { font-family: 'Playfair Display', serif; font-size: 40px; margin: 10px 0; font-weight: 700; }

.about-section { padding: 100px 0; text-align: center; background: #0f0b12; }
.about-flex p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 16px; }

/* Menu */
.menu-section { padding: 70px 0; }
.menu-header { text-align: center; margin-bottom: 45px; }
.section-subtitle { color: var(--muted); font-size: 11.5px; }

/* ОТСТУП МЕЖДУ КАТЕГОРИЯМИ */
.menu-category {
    margin-bottom: 80px; 
}

.category-header { color: var(--gold); font-weight: 600; margin-bottom: 18px; letter-spacing: 1px; font-size: 15px; border-left: 2px solid var(--gold); padding-left: 10px; }

.menu-item {
    background: var(--bg-card);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.25s;
    border: 1px solid transparent;
}
.menu-item:hover { background: #1a151d; }

.item-main { display: flex; align-items: center; gap: 12px; }
.item-img { width: 45px; height: 45px; border-radius: 7px; overflow: hidden; }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-name { font-weight: 500; font-size: 14.5px; }
.item-price { color: var(--gold); font-weight: 600; font-size: 14.5px; }

.item-details {
    position: absolute;
    left: 75px;
    bottom: 3px;
    font-size: 9.5px;
    color: var(--muted);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.menu-item.active { background: #1a161d; padding-bottom: 26px; border: 1px solid rgba(212,180,131,0.15); }
.menu-item.active .item-details { opacity: 1; max-height: 30px; bottom: 7px; }
.menu-item.active .item-name { transform: translateY(-7px); }

/* Contacts */
.contacts-section { padding: 100px 0; }
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { 
    background: var(--bg-card); 
    padding: 40px 20px; 
    border-radius: 12px; 
    text-align: center; 
    border: 1px solid rgba(212,180,131,0.08); 
    text-decoration: none; 
    transition: 0.3s;
}
.contact-card:hover { transform: translateY(-4px); background: #1a151d; border-color: var(--gold); }
.card-icon { font-size: 32px; margin-bottom: 10px; }
.card-title { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; font-weight: 600; }
.card-p { font-size: 15px; color: var(--white); }

/* Footer */
.main-footer { padding: 50px 0; border-top: 1px solid rgba(212,180,131,0.08); text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); margin-bottom: 10px; }
.copyright { color: var(--muted); font-size: 12px; letter-spacing: 1px; }

@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 50px; }
    .hero-circle-img { width: 300px; height: 300px; }
    .contacts-grid { grid-template-columns: 1fr; }
}
/* Стили для блока с цифрами в "О нас" */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px; /* Расстояние между колонками */
    margin-top: 40px; /* Отступ от текста сверху */
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px; /* Размер цифр */
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column; /* На мобилках цифры будут друг под другом */
        gap: 30px;
    }
}
.section-tag-gold {
    color: var(--gold);
    font: 600 11px/1 'Montserrat', sans-serif; /* Тонкий и четкий шрифт */
    letter-spacing: 3px;         /* Увеличиваем расстояние между буквами как на фото */
    text-transform: uppercase;   /* Все буквы большие */
    margin-bottom: 15px;
    display: block;
    text-align: center;          /* Центрируем надпись */

    /* ЭФФЕКТ СВЕЧЕНИЯ */
    text-shadow: 0 0 10px rgba(212, 180, 131, 0.5), 
                 0 0 20px rgba(212, 180, 131, 0.3);
}