   /* Базовые стили и сброс */
        :root {
            --primary: #e8b054;
            --secondary: #2a6a5c;
            --light: #f9f7f2;
            --dark: #333333;
            --text: #444444;
            --transition: all 0.4s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            color: var(--dark);
            font-weight: 600;
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .section-title p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--text);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,245,240,0.8) 100%);
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background:url(./i/img.png);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 10;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text);
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
        }
        
        /* About Section */
        .about {
            background: white;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-image {
            flex: 1;
            height: 500px;
            border-radius: var(--radius);
            background: linear-gradient(45deg, #f5f1e8, #e8dfce);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .about-content p {
            margin-bottom: 20px;
        }
        
        .about-features {
            display: flex;
            margin-top: 30px;
            gap: 20px;
        }
        
        .about-feature {
            flex: 1;
            text-align: center;
            padding: 20px;
            background: var(--light);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .about-feature i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Menu Section */
        .menu {
            background: var(--light);
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .menu-tab {
            padding: 12px 25px;
            background: white;
            border: none;
            border-radius: 50px;
            color: var(--text);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .menu-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .menu-item {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .menu-item-image {
            height: 200px;
            overflow: hidden;
        }
        
        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .menu-item:hover .menu-item-image img {
            transform: scale(1.05);
        }
        
        .menu-item-content {
            padding: 20px;
        }
        
        .menu-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .menu-item-header h3 {
            font-size: 1.3rem;
            color: var(--secondary);
        }
        
        .menu-item-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .menu-item p {
            color: var(--text);
            font-style: italic;
        }
        
        /* Gallery Section */
        .gallery {
            background: white;
        }
        
        .gallery-slider {
            height: 500px;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .swiper-container {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: flex-end;
            padding: 30px;
            color: white;
            position: relative;
        }
        
        .swiper-slide:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            z-index: 1;
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
        }
        
        .slide-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: white;
        }
        
        /* Features Section */
        .features {
            background: var(--light);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .feature h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Special Offer Section */
        .special-offer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }
        
        .special-offer .section-title h2,
        .special-offer .section-title p {
            color: white;
        }
        
        .special-offer .section-title:after {
            background: white;
        }
        
        .offer-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255,255,255,0.15);
            padding: 50px;
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
        }
        
        .offer-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .offer-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .countdown-item {
            text-align: center;
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: var(--radius);
            min-width: 80px;
        }
        
        .countdown-value {
            display: block;
            font-size: 2.2rem;
            font-weight: bold;
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Reservation Section */
        .reservation {
            background: white;
        }
        
        .reservation-container {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .reservation-image {
            flex: 1;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .reservation-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .reservation-form {
            flex: 1;
            background: var(--light);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            color: var(--text);
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 176, 84, 0.2);
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--light);
        }
        
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            color: var(--secondary);
            font-weight: 600;
        }
        
        /* Blog Section */
        .blog {
            background: white;
        }
        
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-post {
            background: var(--light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .blog-post:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-post:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-content h3 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .blog-content p {
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 40px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-column p, .footer-column a {
            color: rgba(255,255,255,0.8);
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: white;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .map-container {
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-container, .reservation-container {
                flex-direction: column;
            }
            
            .hero-bg {
                width: 70%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .mobile-menu {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: white;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: var(--transition);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 30px;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .hero-bg {
                width: 100%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
            
            .reservation-form {
                padding: 25px;
            }
        }