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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #FFF8F0;
    color: #2D3436;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

.header {
    background: #FFF8F0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E8DCC4;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Мобильное бургер-меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #2D3436;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-leaf {
    width: 30px;
    height: 30px;
    background: #A8B89F;
    border-radius: 50% 0 50% 0;
    position: absolute;
    top: -5px;
    right: 5px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    gap: 0;
}

.logo-name {
    color: #FF6B35;
    font-weight: 800;
}

.logo-action {
    color: #A8B89F;
    font-weight: 700;
}

.nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #2D3436;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: #FF6B35;
}

/* Мобильная навигация */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2D3436;
        padding: 15px 30px;
        border-radius: 25px;
        transition: all 0.3s;
    }
    
    .nav-menu a:hover {
        background: #FF6B35;
        color: white;
        transform: scale(1.05);
    }
}

.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2D3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #FF6B35;
}

.hero-text p {
    font-size: 1.3rem;
    color: #636E72;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A8B89F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.hero-circle::before {
    content: '🍳';
    font-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    color: #2D3436;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #fef8f0;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid #E8DCC4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D3436;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #636E72;
}

.catalog-section {
    background: white;
    padding: 80px 20px;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #FFF8F0;
    border: 2px solid #E8DCC4;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #2D3436;
}

.filter-btn:hover, .filter-btn.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dish-card {
    background: #FFF8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid #E8DCC4;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dish-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #FFE8D6, #FFD6BA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border-bottom: 2px solid #E8DCC4;
}

.dish-info {
    padding: 25px;
}

.dish-category {
    display: inline-block;
    background: #A8B89F;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.dish-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2D3436;
}

.dish-description {
    font-size: 0.95rem;
    color: #636E72;
    margin-bottom: 15px;
    line-height: 1.5;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6B35;
}

.order-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.order-btn:hover {
    background: #FF8C42;
    transform: scale(1.05);
}

.contact-section {
    background: linear-gradient(135deg, #A8B89F, #8FA888);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-section .section-title {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    background: white;
    color: #2D3436;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.footer {
    background: #2D3436;
    color: white;
    padding: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .hero-circle::before {
        font-size: 100px;
    }
}