@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter_24pt-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter_24pt-Bold.ttf") ;
    font-weight:bold;
    font-style: normal;
  }
  @font-face {
    font-family: "Playfair Display";
    src: url("fonts/Playfair_Display/PlayfairDisplay-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #2d2d2d;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll{
    overflow: hidden;
}

a{
    color: inherit;
    text-decoration: none;
}
button{
    border: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #ff6f61, #f4c430);
    padding: 20px 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff8e1;
    transform: translateY(-2px);
}

.burger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Footer */
footer {
    background: #2d2d2d;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-grid h3, .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem !important;
    margin-bottom: 20px;
    color: #fff !important;
}

.footer-grid a,
.footer-grid p {
    color: #fff8e1;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.footer-grid a:hover {
    color: #fff;
}
.hero {
            background: url('image/offer3.jpeg') center/cover no-repeat;
            height: 100vh;
            max-height: 1200px;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .cta-button {
            background: #ff6f61;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #f4c430;
            transform: scale(1.1);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about img {
            width: 50%;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ff6f61;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Menu Section */
        .menu {
            padding: 80px 0;
        }

        .menu h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .menu-item {
            background: #fff8e1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-10px);
        }

        .menu-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .menu-item h3 {
            font-size: 1.5rem;
            padding: 15px;
            color: #2d2d2d;
        }

        .menu-item p {
            padding: 0 15px 15px;
            font-size: 1rem;
            color: #666;
        }

        /* Slider Section */
        .slider {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6f61, #f4c430);
            color: #fff;
        }

        .slider h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .slider-container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px;
        }

        .slider-item {
            flex: 0 0 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

        .slider-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Story Section */
        .story {
            padding: 80px 0;
        }

        .story .container{
            display: flex;
            flex-direction: row-reverse;
            gap: 40px;
        }

        .story img {
            width: 50%;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .story-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ff6f61;
        }

        .story-text p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Accordion Section */
        .accordion {
            padding: 80px 0;
        }

        .accordion h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .accordion-item {
            background: #fff8e1;
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .accordion-header {
            padding: 15px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f4c430;
            color: #fff;
        }

        .accordion-content {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.active {
            padding: 15px;
            max-height: 200px;
        }

        /* Chef Spotlight Section */
        .chef-spotlight {
            padding: 80px 0;
        }

        .chef-spotlight h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .chef-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .chef-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .chef-card:hover {
            transform: scale(1.05);
        }

        .chef-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .chef-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 111, 97, 0.8);
            color: #fff;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .chef-card:hover .chef-overlay {
            transform: translateY(0);
        }

        .chef-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .chef-overlay p {
            font-size: 1rem;
        }

        /* Interactive Recipe Section */
        .recipe-interactive {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6f61, #f4c430);
            color: #fff;
        }

        .recipe-interactive h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .recipe-selector {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .recipe-button {
            background: #fff;
            color: #ff6f61;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .recipe-button:hover,
        .recipe-button.active {
            background: #f4c430;
            color: #fff;
        }

        .recipe-content {
            display: none;
            text-align: center;
        }

        .recipe-content.active {
            display: block;
        }

        .recipe-content img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            margin: 20px auto;
        }

        /* Customer Reviews Section */
        .reviews {
            padding: 80px 0;
        }

        .reviews h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .review-card {
            background: #fff8e1;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .review-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 2rem;
            color: #ff6f61;
            position: absolute;
            top: -20px;
            left: 20px;
            opacity: 0.2;
        }

        .review-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .review-card h3 {
            font-size: 1.2rem;
            color: #ff6f61;
        }

        /* Flavor Journey Section */
        .flavor-journey {
            padding: 80px 0;
            position: relative;
        }

        .flavor-journey h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .journey-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .journey-item {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }

        .journey-item h3{
            color: #fff !important;
        }

        .journey-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .journey-item img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 20px;
        }

        .journey-item:nth-child(even) {
            flex-direction: row-reverse;
            margin-left: 100px;
        }

        .journey-item:nth-child(even) img {
            margin-left: 20px;
            margin-right: 0;
        }

        .journey-text h3 {
            font-size: 1.5rem;
            color: #ff6f61;
            margin-bottom: 10px;
        }

        .journey-text p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Order Process Section */
        .order-process {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6f61, #f4c430);
            color: #fff;
        }

        .order-process h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-10px);
        }

        .process-step i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #fff8e1;
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 1rem;
        }

        /* Local Ingredients Section */
        .local-ingredients {
            padding: 80px 0;
        }

        .local-ingredients h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .ingredient-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            text-align: center;
        }

        .ingredient-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .ingredient-card:hover img {
            transform: scale(1.1);
        }

        .ingredient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 111, 97, 0.7);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ingredient-card:hover .ingredient-overlay {
            opacity: 1;
        }

        .ingredient-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .ingredient-overlay p {
            font-size: 1rem;
            padding: 0 20px;
        }
/* Стили для Specials-Events Page */



.special-offers {
    padding: 80px 0;
}

.special-offers h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.offer-card {
    background: #fff8e1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.offer-card h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.offer-card .price {
    font-size: 1.2rem;
    color: #ff6f61;
    font-weight: bold;
    margin-bottom: 15px;
}

.offer-card .order-button {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.offer-card .order-button:hover {
    background: #f4c430;
    transform: scale(1.05);
}

.events {
    padding: 80px 0;
}

.events h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.event-tab {
    background: #fff;
    color: #ff6f61;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-tab:hover,
.event-tab.active {
    background: #ff6f61;
    color: #fff;
}

.event-content {
    display: none;
}

.event-content.active {
    display: block;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.event-card {
    background: #fff8e1;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 1rem;
    color: #666;
}

.taste-journey {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6f61, #f4c430);
    color: #fff;
}

.taste-journey h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.journey-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.journey-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 100px;
}

.journey-item:nth-child(even) img {
    margin-left: 20px;
    margin-right: 0;
}

.journey-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.journey-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.chefs-picks {
    padding: 80px 0;
}

.chefs-picks h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.picks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pick-card {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.pick-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pick-card:hover img {
    transform: scale(1.1);
}

.pick-overlay {
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(94, 55, 51, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pick-card:hover .pick-overlay {
    opacity: 1;
}

.pick-overlay h3 .pick-overlay {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

 p .pick-overlay p {
    font-size: 1rem;
    padding: 0 20px;
}

.customer-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6f61, #f4c430);
    color: #fff;
}

.customer-stories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.story-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6f14 Free';
    font-weight: bold 900;
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
}

.story-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-card h3 {
    font-size: 1.2rem;
}

.old-price{
    text-decoration: line-through; color: #666;
}

.cta-button {
    background: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f4c430;
    transform: scale(1.1);
}

.delivery-info {
    padding: 80px 0;
}

.delivery-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.info-card {
    background: #fff8e1;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.info-card p {
    font-size: 1rem;
    color: #666;
}


.eco-delivery {
    padding: 80px 0;
}

.eco-delivery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.eco-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.eco-content img {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.eco-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff6f61;
}

.eco-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.delivery-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6f61, #f4c430);
    color: #fff;
}

.delivery-reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 1.2rem;
    color: #fff;
}

.faq {
    padding: 80px 0;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
}

.faq-item {
    background: #fff8e1;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-header {
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4c430;
    color: #fff;
}

.faq-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    padding: 15px;
    max-height: 200px;
}

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6f61, #f4c430);
    color: #fff;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
}

.contact button {
    background: #fff;
    color: #ff6f61;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact button:hover {
    background: #fff8e1;
    transform: scale(1.05);
}

/* Стили для Privacy Policy Page */
.privacy-hero {
    padding: 60px 0;
    background: #fff8e1;
}

.privacy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff6f61;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-hero p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.privacy-section {
    padding: 40px 0;
}

.privacy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* Стили для Terms and Conditions Page */
.terms-hero {
    padding: 60px 0;
    background: #fff8e1;
}

.terms-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff6f61;
    text-align: center;
    margin-bottom: 20px;
}

.terms-hero p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.terms-section {
    padding: 40px 0;
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.terms-section h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-section ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* Стили для Thanks Page */
.thanks-section {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thanks-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 20px;
}

.thanks-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.home-button {
    background: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
}

        /* Filter Section */
        .filter-section {
            padding: 40px 0;
            background: #fff8e1;
            text-align: center;
        }

        .filter-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #ff6f61;
            margin-bottom: 20px;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-button {
            background: #fff;
            color: #ff6f61;
            padding: 10px 20px;
            border-radius: 25px;
            border: 2px solid #ff6f61;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .filter-button:hover,
        .filter-button.active {
            background: #ff6f61;
            color: #fff;
        }

        /* Catalog Section */
        .catalog {
            padding: 80px 0;
        }

        .catalog h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .catalog-item {
            background: #fff8e1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            max-width: 500px;
            display: flex;
            flex-direction: column;
        }

        .catalog-item:hover {
            transform: translateY(-10px);
        }

        .catalog-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .catalog-item-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
        }

        .catalog-item h3 {
            font-size: 1.5rem;
            color: #2d2d2d;
            margin-bottom: 10px;
        }

        .catalog-item p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
        }

        .catalog-item .price {
            font-size: 1.2rem;
            color: #ff6f61;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .catalog-item .order-button {
            background: #ff6f61;
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .catalog-item .order-button:hover {
            background: #f4c430;
            transform: scale(1.05);
        }

        /* Popular Combos Section */
        .popular-combos {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6f61, #f4c430);
            color: #fff;
        }

        .popular-combos h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .combo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .combo-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .combo-card:hover {
            transform: scale(1.05);
        }

        .combo-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .combo-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .combo-card p {
            font-size: 1rem;
        }

        /* Cooking Tips Section */
        .cooking-tips {
            padding: 80px 0;
        }

        .cooking-tips h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .tip-card {
            background: #fff8e1;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .tip-card i {
            font-size: 2rem;
            color: #ff6f61;
            margin-bottom: 15px;
        }

        .tip-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2d2d2d;
        }

        .tip-card p {
            font-size: 1rem;
            color: #666;
        }

        /* Seasonal Specials Section */
        .seasonal-specials {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff6f61, #f4c430);
            color: #fff;
        }

        .seasonal-specials h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .specials-slider {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px;
        }

        .specials-slider::-webkit-scrollbar{
            width: 0;
        }

        .special-item {
            flex: 1 0 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

        .special-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .special-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .special-item p {
            font-size: 1rem;
        }

        /* Chef’s Choice Section */
        .chefs-choice {
            padding: 80px 0;
        }

        .chefs-choice h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #ff6f61;
        }

        .choice-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .choice-card {
            position: relative;
            width: 300px;
            overflow: hidden;
            border-radius: 15px;
        }

        .choice-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .choice-card:hover img {
            transform: scale(1.1);
        }

        .choice-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 111, 97, 0.7);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .choice-card:hover .choice-overlay {
            opacity: 1;
        }

        .choice-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .choice-overlay p {
            font-size: 1rem;
            padding: 0 20px;
        }
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ff6f61;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .specials-hero h1,
    .delivery-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .thanks-section h1 {
        font-size: 2rem;
    }

    .specials-hero p,
    .delivery-hero p,
    .privacy-hero p,
    .terms-hero p,
    .thanks-section p {
        font-size: 1rem;
    }

    .events-tabs {
        flex-direction: column;
        align-items: center;
    }

    .journey-item:nth-child(even) {
        margin-left: 0;
        flex-direction: column;
    }

    .journey-item img {
        margin: 0 0 20px 0;
    }

    .newsletter form {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step{
        width: 100%;
    }

    .eco-content {
        flex-direction: column;
    }

    .eco-content img {
        width: 100%;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.8rem;
    }
    .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about,
            .story .container{
                flex-direction: column;
            }

            .about img,
            .story img {
                width: 100%;
            }

            .journey-item:nth-child(even) {
                margin-left: 0;
                flex-direction: column;
            }
            .container {
                padding: 0 10px;
            }
            .journey-item {
                flex-wrap: wrap;
            }

            .journey-item img {
                margin: 0 0 20px 0;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            .catalog-hero h1 {
                font-size: 2rem;
            }

            .catalog-hero p {
                font-size: 1rem;
            }

            .filter-buttons {
                flex-wrap: wrap;
                align-items: center;
            }
            .recipe-button{
                padding: 10px;
            }
}