* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #2c2c2c;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Типографика */
h1, h2, h3, .logo, .nav-links a, .hero-title, .section-title {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
header {
    background-color: rgba(255, 248, 240, 0.96);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #c27e3a, #a55d2a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.2s;
}

.logo i {
    color: #c27e3a;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-right: 5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #3b2a21;
    transition: 0.3s;
    font-size: 1rem;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #c27e3a;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: #c27e3a;
}

.burger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #a55d2a;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.5)), url('../images/restoran.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    background-color: #c27e3a;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #a55d2a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Секции общие */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    position: relative;
    color: #3b2a21;
}

.section-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background: #c27e3a;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* О ресторане */
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a3a2e;
}

.about-text p {
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.02);
}

/* Меню */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.menu-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 35px rgba(0,0,0,0.1);
}

.menu-img {
    height: 220px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.menu-card:hover .menu-img img {
    transform: scale(1.08);
}

.menu-info {
    padding: 24px;
}

.menu-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.price {
    color: #c27e3a;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 12px 0;
}

.menu-info p {
    color: #5e4b38;
    line-height: 1.4;
}

/* Доставка */
.delivery-wrap {
    background: linear-gradient(115deg, #fff3e8 0%, #fce8db 100%);
    border-radius: 48px;
    padding: 48px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.delivery-text {
    flex: 1.2;
}

.delivery-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.delivery-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 20px;
    border-radius: 60px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.03);
}

.feature i {
    font-size: 1.6rem;
    color: #c27e3a;
}

.delivery-img {
    flex: 0.8;
    text-align: center;
}

.delivery-img img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

/* Отзывы */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.review-card {
    flex: 0 0 340px;
    background: white;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
    scroll-snap-align: start;
    transition: 0.3s;
}

.review-card:hover {
    transform: scale(1.02);
}

.stars {
    color: #ffb347;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin: 15px 0;
    line-height: 1.5;
    color: #2c2c2c;
}

.reviewer {
    font-weight: 700;
    margin-top: 15px;
    color: #c27e3a;
}

/* Контакты */
.contacts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    background: #ffffffd9;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: #f5e7dd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #c27e3a;
}

.map {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-height: 300px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: #1f1a16;
    color: #e9d9cd;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #c27e3a;
}

.socials {
    margin: 20px 0;
}

.socials a {
    color: #e9d9cd;
    margin: 0 12px;
    font-size: 1.4rem;
    transition: 0.3s;
    display: inline-block;
}

.socials a:hover {
    color: #c27e3a;
    transform: translateY(-3px);
}

.author {
    margin-top: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-top: 1px solid #3e2e24;
    padding-top: 20px;
    color: #b7a085;
}

/* Анимации */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

