*{
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body{
    overflow-x: hidden;
}

/* top-bar */

.top-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.top-left span {
    margin-right: 20px;
}

.top-left span i {
    color: #88531D;
}

.top-right a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
}

.top-right a:hover {
    color: #e0912b;
}

/* Navbar */

.navbar {
    padding: 15px 0;
    z-index: 99;
    background: transparent;
    position: sticky;
    top: 0;
    background-color: #1e1e1e17;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.fancy-logo {
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Apple Chancery', cursive;
    font-size: 30px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0 100px;
}

.nav-links li a {
    color: #fff;
    font-size: 12px;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.nav-links li a:hover {
    color: #e0912b;
}

.mobile-menu-toggle {
    display: none;
    }

.menu-checkbox {
    display: none;
}

.menu-icon {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* Hero Section */
.hero-section {
    background: #1c1c1c;
    color: #fff;
    padding: 0;
    margin-top: -85px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: stretch; 
    gap: 0; 
    flex-wrap: nowrap;
    max-width: 100%;
    position: relative;
}

.hero-text {
    width: 60%;
    background: #1c1c1c; 
    padding: 60px 100px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-text h2 {
    font-size: 48px; 
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-text h2 span {
    display: block;
    font-weight: bold;
    color: #C3711F;
    font-size: 56px; 
    margin-top: 5px;
}

.hero-text p {
    font-size: 16px; 
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #e0912b;
    color: #fff;
    padding: 12px 30px; 
    border: none;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #c0710a;
}

.btn-secondary {
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary:hover {
    color: #e0912b;
    border: 2px solid #e0912b;
}

.hero-image {
    width: 40%;
    position: relative;
    background-color: #88531D;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    min-height: 600px;
}

.hero-image img {
    position: absolute;
    right: 20%;
    max-width: 80%; 
    height: auto;
    -webkit-user-drag: none;
    object-fit: contain;
    z-index: 3;
    transform: translateX(-25%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 85px;
    bottom: 0;
    right: 0;
    width: 40%;
    background-color: #88531D;
    z-index: 1;
}


@media screen and (max-width: 426px) {
/* Top Bar Mobile */
.top-bar {
    padding: 6px 0;
    font-size: 10px;
}

.top-bar .container {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
}

.top-left {
    display: flex;
    gap: 10px;
    text-align: center;
}

.top-left span {
    margin-right: 0;
    margin-bottom: 5px;
}

.top-right {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Navbar Mobile */
.navbar .container {
    padding: 0 15px;
}

.fancy-logo {
    font-size: 24px;
}

.menu-icon {
    display: block;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-checkbox:checked + .menu-icon + .nav-links {
    display: flex;
}

.menu-checkbox:checked + .menu-icon .fa-bars {
    display: none;
}

.menu-checkbox:checked + .menu-icon::after {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Hero Section Mobile */
.hero-section {
    margin-top: -60px;
    padding-top: 60px;
}

    .hero-container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 30px;
    }

    .hero-text h2 span {
        font-size: 36px;
        margin-top: 10px;
    }

    .hero-text p {
        font-size: 14px;
        max-width: 90%;
        margin-bottom: 25px;
        margin-left: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 40px;
        width: 100%;
        max-width: 100px;

    }

    .hero-image {
        display: none;
    }

}



/* About section */

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.about-label {
    color: #d4842a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-top: 20px;
}

.about-title {
    font-size: 48px;
    font-weight: bold;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-description:last-of-type {
    margin-bottom: 35px;
}

.read-more-btn {
    color: #d4842a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #b8732a;
    transform: translateX(5px);
}

.read-more-btn::after {
    content: '→';
    font-size: 18px;
    font-weight: bold;
}

.about-image-box {
    position: relative;
    width: fit-content;
    margin: auto;
}

.about-image-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 500px;
    height: 330px;
    background-color: #D0985F;
    z-index: 1;
}

.about-image {
    position: relative;
    width: 500px;
    height: auto;
    z-index: 2;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 426px) {
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        order: 1;
        text-align: left;
    }

    .about-image-box {
        order: 2;
    }

    .about-label {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .about-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .about-description:last-of-type {
        margin-bottom: 25px;
    }

    .read-more-btn {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .about-image-bg {
        width: 280px;
        height: 200px;
        top: -15px;
        left: -15px;
    }

    .about-image {
        width: 280px;
    }
}


/* Menu Section */

.menu-section {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    background-color: #F5F5F5;
}

.menu-section i {
    color: #d4842a;
    font-size: 50px;
    font-weight: 500;
}

.menu-subtitle {
    color: #d4842a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.menu-title {
    font-size: 48px;
    font-weight: bold;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 26px;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #e0e0e0;
    color: #1E1E1E;
}

.filter-btn.active {
    background-color: #d4842a;
    color: white;
}

.filter-btn:hover {
    background-color: #d4842a;
    color: white;
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    position: relative;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 10px 10px;
    color: white;
    background-color: white;
}

.menu-item-title {
    font-size: 24px;
    font-weight: bold;
    color: #d4842a;
    text-align: center;
}


        @media (max-width: 426px) {
            .menu-section {
                padding: 30px 0;
            }

            .menu-section i {
                font-size: 30px;
            }

            .menu-subtitle {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .menu-title {
                font-size: 24px;
                letter-spacing: 1px;
                margin-bottom: 20px;
            }

            .menu-filters {
                gap: 10px;
                margin-bottom: 30px;
            }

            .filter-btn {
                padding: 8px;
                font-size: 12px;
                border-radius: 8px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 70%;
            }

            .menu-item {
                border-radius: 0 0 12px 12px;
            }

            .menu-item img {
                height: 250px;
            }

            .menu-item-title {
                font-size: 20px;
            }

            .menu-item-overlay {
                padding: 8px;
            }
        }


/* Deals */

.deals-container {
    max-width: 1200px;
    padding: 40px 0;
    margin: 0 auto;
    text-align: center;
}

.deals-header {
    color: #e67e22;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.deals-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.deals-title {
    font-size: 42px;
    font-weight: bold;
    color: #1E1E1E;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dishes-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dish-card {
    padding: 30px 10px;
    width: 300px;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.dish-name {
    font-size: 24px;
    font-weight: 700;
    color: #C3711F;
    margin-bottom: 10px;
}

.dish-description {
    font-size: 14px;
    color: #1E1E1E;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.price-info {
    font-size: 16px;
    color: #1E1E1E;
    font-weight: 700;
}

.price {
    color: #C3711F;
    font-weight: 700;
    font-size: 18px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bdc3c7;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #e67e22;
}

.dot:hover {
    background-color: #d35400;
}

@media (max-width: 426px) {
            .deals-container {
                max-width: 425px;
                padding: 30px 0;
                overflow: hidden;
            }

            .deals-title {
                font-size: 28px;
                margin-bottom: 30px;
                padding: 0 20px;
            }

            .deals-header {
                padding: 0 20px;
            }

            .dishes-grid {
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: flex-start;
                gap: 0;
                margin-bottom: 30px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding: 0 20px;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .dishes-grid::-webkit-scrollbar {
                display: none;
            }

            .dish-card {
                width: 320px;
                min-width: 320px;
                max-width: 320px;
                padding: 20px 15px;
                scroll-snap-align: center;
                margin-right: 15px;
            }

            .dish-card:last-child {
                margin-right: 0;
                padding-right: 5px;
            }

            .dish-image {
                width: 100%;
                max-width: 290px;
                height: 180px;
                margin-bottom: 20px;
            }

            .dish-name {
                font-size: 20px;
            }

            .dish-description {
                max-width: 80%;
                padding: 0 10px;
            }

            .price-info {
                font-size: 16px;
            }

            .price {
                font-size: 20px;
            }

            .pagination-dots {
                gap: 12px;
                padding: 0 20px;
            }
        }



/* Booking form */

.booking-background {
    height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    position: relative;
}

.booking-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.booking-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    width: 100%;
    max-width: 450px;
    margin-left: 80px;
    backdrop-filter: blur(2px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-accent {
    width: 60px;
    height: 4px;
    background-color: #e67e22;
    margin: 10px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 90%;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    background-color: white;
    color: #333;
    outline: none;
    transition: box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus {
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

.form-input::placeholder {
    color: #999;
    font-weight: 400;
}

.date-input {
    position: relative;
}

.date-input .form-input {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.textarea-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.book-button {
    background-color: #e67e22;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.book-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.book-button:active {
    transform: translateY(0);
}

@media (max-width: 426px) {
            .booking-background {
                justify-content: center;
                align-items: center;
                background-attachment: scroll;
            }

            .booking-container {
                max-width: 100%;
                width: 100%;
                margin-left: 0;
                height: auto;
            }

            .booking-title {
                font-size: 28px;
                margin-bottom: 25px;
            }

            .form-group {
                margin-bottom: 18px;
            }

            .form-input {
                padding: 10px 12px;
                font-size: 16px;
            }

            .textarea-input {
                min-height: 100px;
            }

            .book-button {
                width: 50%;
                padding: 12px;
                font-size: 14px;
                border-radius: 8px;
                margin-top: 20px;
            }

            .date-input .form-input {
                background-position: right 15px center;
            }
        }



/* Special Offers */

.special-offers-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .offers-content {
            padding: 20px;
        }

        .section-header {
            color: #e67e22;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .main-title {
            font-size: 42px;
            font-weight: bold;
            color: #1E1E1E;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .offer-item {
            background: white;
            border-radius: 0 0 15px 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .offer-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .offer-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .offer-details {
            flex: 1;
        }

        .offer-name {
            font-size: 22px;
            font-weight: 700;
            color: #e67e22;
            margin-bottom: 8px;
        }

        .offer-description {
            font-size: 14px;
            color: #1E1E1E;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .price-section {
            text-align: right;
        }

        .current-price {
            font-size: 28px;
            font-weight: 900;
            color: #e67e22;
            display: block;
        }

        .original-price {
            font-size: 16px;
            font-weight: 600;
            color: #B9B9B9;
            text-decoration: line-through;
            display: block;
            margin-top: 2px;
        }

        .food-gallery {
            position: relative;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-image:hover {
            transform: scale(1.05);
        }

        .center-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background-color: #c49b7c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 8px solid white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .center-logo i {
            color: white;
            font-size: 80px;
            font-weight: 500;
        }


@media (max-width: 426px) {
            .special-offers-container {
                max-width: 400px;
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 20px 0;
            }

            .offers-content {
                padding: 0;
                order: 1;
            }

            .section-header {
                font-size: 16px;
            }

            .main-title {
                font-size: 28px;
                margin-bottom: 30px;
                letter-spacing: 0.5px;
            }

            .offer-item {
                padding: 20px 15px;
                margin-bottom: 20px;
                gap: 15px;
            }

            .offer-image {
                width: 60px;
                height: 60px;
            }

            .offer-name {
                font-size: 20px;
                margin-bottom: 6px;
            }

            .offer-description {
                font-size: 12px;
                line-height: 1.3;
            }

            .current-price {
                font-size: 24px;
            }

            .original-price {
                font-size: 14px;
            }

            .food-gallery {
                order: 2;
                margin-top: 10px;
            }

            .gallery-grid {
                gap: 10px;
            }

            .gallery-image {
                height: 160px;
            }

            .center-logo {
                width: 120px;
                height: 120px;
                border: 6px solid white;
            }

            .center-logo i {
                font-size: 60px;
            }
        }




/* Testimonials */

.testimonials-section {
    min-height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonials-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-header {
    margin-bottom: 40px;
}

.food-lover-icon {
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-lover-icon i {
    font-size: 34px;
    color: white;
}

.section-title-small {
    color: #e67e22;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title-main {
    color: white;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.testimonial-card {
    background: rgba(240, 240, 240, 0.60);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 50px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    color: #e67e22;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1E1E1E;
    font-weight: 500;
    margin: 15px 0;
    text-align: center;
    font-style: italic;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #e67e22;
    padding: 5px 15px;
}

.customer-avatars {
    display: flex;
    justify-content: center;
    gap: 300px;
    margin-top: 20px;
}

.customer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.testimonial-item {
            display: none;
        }


@media (max-width: 426px) {
            .testimonials-section {
                padding: 60px 15px;
                min-height: auto;
            }

            .section-title-main {
                font-size: 28px;
            }

            .section-title-small {
                font-size: 16px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            /* Hide desktop layout */
            .testimonials-grid {
                display: none;
            }

            .customer-avatars {
                display: none;
            }

            /* Show mobile layout */
            .testimonial-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-bottom: 40px;
            }

            .testimonial-item:last-child {
                margin-bottom: 0;
            }

            .testimonial-item .customer-avatar {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                object-fit: cover;
                border: 4px solid white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                background: white;
                margin-top: 10px;
            }

            .testimonial-item .testimonial-card {
                width: 100%;
                max-width: 300px;
                padding: 30px 25px 20px;
                margin: 0;
            }

            .testimonial-item .quote-icon {
                font-size: 40px;
                top: 10px;
                right: 15px;
            }

            .testimonial-item .testimonial-text {
                font-size: 14px;
                margin: 10px 0;
            }

            .testimonial-item .customer-name {
                font-size: 15px;
            }
        }




/* Statistics */

.statistics-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: white;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #e67e22;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    text-transform: capitalize;
}

@media (max-width: 426px) {
            .statistics-section {
                padding: 40px 10px;
            }

            .stats-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px 20px;
                justify-items: center;
                max-width: 100%;
            }

            .stat-item {
                width: 100%;
                max-width: 150px;
            }

            .stat-item:hover {
                transform: translateY(-5px);
            }

            .stat-circle {
                width: 90px;
                height: 90px;
                border: 2px solid #e67e22;
                margin-bottom: 15px;
            }

            .stat-circle:hover {
                transform: scale(1.02);
            }

            .stat-number {
                font-size: 24px;
                font-weight: 800;
            }

            .stat-label {
                font-size: 14px;
                font-weight: 600;
                line-height: 1.3;
                max-width: 100px;
            }
        }



/* Newsletter  */

.newsletter-section {
            background: linear-gradient(135deg, #d2691e, #cd853f);
            padding: 80px 20px;
            text-align: center;
            color: white;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-container {
            max-width: 600px;
            width: 100%;
        }

        .newsletter-icon {
            width: 80px;
            height: 80px;
            border: 3px solid white;
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            transition: all 0.3s ease;
        }

        .newsletter-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        .newsletter-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .newsletter-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .newsletter-description {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .subscription-container {
            display: flex;
            max-width: 600px;
            margin: 0 auto 20px;
            gap: 15px;
            align-items: center;
        }

        .email-input {
            flex: 1;
            padding: 18px 20px;
            border: none;
            font-size: 18px;
            outline: none;
            background: white;
            color: #333;
        }

        .email-input::placeholder {
            color: #999;
        }

        .subscribe-btn {
            padding: 18px 30px;
            background: #181818;
            color: white;
            border: none;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .subscribe-btn:hover {
            background: #34495e;
        }

        .privacy-text {
            font-size: 16px;
            opacity: 0.8;
            margin-top: 15px;
            font-weight: 600;
        }

        @media (max-width: 426px) {
            .newsletter-section {
                padding: 50px 15px;
                min-height: 300px;
            }

            .newsletter-icon {
                width: 60px;
                height: 60px;
                border: 2px solid white;
                margin-bottom: 25px;
            }

            .newsletter-icon svg {
                width: 30px;
                height: 30px;
            }

            .newsletter-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
                line-height: 1.2;
            }

            .newsletter-description {
                font-size: 16px;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .newsletter-description br {
                display: none;
            }

            .subscription-container {
                flex-direction: column;
                gap: 12px;
                max-width: 80%;
                margin-bottom: 15px;
            }

            .email-input {
                width: 80%;
                padding: 15px 18px;
                font-size: 16px;
            }

            .subscribe-btn {
                width: 50%;
                padding: 15px 20px;
                font-size: 16px;
                font-weight: 700;
            }

            .privacy-text {
                font-size: 14px;
                margin-top: 12px;
                padding: 0 10px;
                line-height: 1.4;
            }
        }



        /* Footer */

.footer-main {
    background-color: #181818;
    color: white;
    padding: 50px 20px 30px;
}

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
            gap: 50px;
            align-items: start;
        }

        /* Food Lover Section */
        .brand-section h2 {
            font-size: 2.5rem;
            font-style: italic;
            font-weight: normal;
            margin-bottom: 25px;
            color: white;
            font-family: 'Brush Script MT', 'Lucida Handwriting', 'Apple Chancery', cursive;
        }

        .brand-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: #d2691e;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            font-size: 0.95rem;
        }

        .read-more::after {
            content: '→';
            margin-left: 8px;
            font-size: 1.1rem;
        }

        /* Opening Hours Section */
        .hours-section h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 600;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .day {
            color: #d2691e;
            font-weight: 600;
            width: 80px;
            flex-shrink: 0;
        }

        .separator {
            color: #666;
            margin: 0 8px;
        }

        .time {
            color: #ccc;
        }

        .closed {
            color: #ccc;
        }

        /* Latest Tweets Section */
        .tweets-section h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 600;
        }

        .tweet {
            margin-bottom: 20px;
        }

        .tweet-content {
            display: flex;
            align-items: flex-start;
            margin-bottom: 8px;
        }

        .tweet-icon {
            color: #d2691e;
            margin-right: 8px;
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .tweet-text {
            color: #ccc;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .tweet-link {
            color: #4a9eff;
            text-decoration: none;
        }

        .tweet-time {
            color: #d2691e;
            font-size: 0.85rem;
            margin-left: 24px;
        }

        /* Instagram Section */
        .instagram-section h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 600;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .instagram-item {
            aspect-ratio: 1;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .instagram-item:hover {
            transform: scale(1.05);
        }

        .instagram-item img {
            width: 100%;
            object-fit: cover;
            text-align: center;
        }

        /* Copyright Section */
        .copyright-section {
            background-color: #1f1f1f;
            padding: 20px;
            text-align: center;
            border-top: 1px solid #333;
        }

        .copyright-text {
            color: #999;
            font-size: 0.9rem;
        }


@media (max-width: 426px) {
            .footer-main {
                padding: 40px 15px 25px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 100%;
            }

            /* Brand Section */
            .brand-section {
                text-align: center;
                padding-bottom: 20px;
                border-bottom: 1px solid #333;
            }

            .brand-section h2 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .brand-section p {
                font-size: 0.9rem;
                margin-bottom: 12px;
                line-height: 1.5;
            }

            .read-more {
                font-size: 0.9rem;
                margin-top: 10px;
            }

            /* Opening Hours Section */
            .hours-section {
                padding-bottom: 20px;
                border-bottom: 1px solid #333;
            }

            .hours-section h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
                text-align: center;
            }

            .hours-list li {
                flex-direction: column;
                align-items: center;
                margin-bottom: 15px;
                gap: 5px;
            }

            .day {
                width: auto;
                font-size: 0.9rem;
            }

            .separator {
                display: none;
            }

            .time {
                font-size: 0.85rem;
            }

            /* Latest Tweets Section */
            .tweets-section {
                padding-bottom: 20px;
                border-bottom: 1px solid #333;
            }

            .tweets-section h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
                text-align: center;
            }

            .tweet {
                margin-bottom: 25px;
                padding: 0 10px;
            }

            .tweet-content {
                margin-bottom: 10px;
            }

            .tweet-icon {
                margin-right: 10px;
                font-size: 1.1rem;
            }

            .tweet-text {
                font-size: 0.85rem;
                line-height: 1.4;
            }

            .tweet-time {
                margin-left: 30px;
                font-size: 0.8rem;
            }

            /* Instagram Section */
            .instagram-section h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
                text-align: center;
            }

            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
                max-width: 280px;
                margin: 0 auto;
            }

            .instagram-item:hover {
                transform: scale(1.02);
            }

            /* Copyright Section */
            .copyright-section {
                padding: 15px 10px;
            }

            .copyright-text {
                font-size: 0.8rem;
            }
        }
