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

:root {
    --primary-color: #fc5d66;
    --secondary-color: #ffc05a;
    --light-color: #f9fafb;
    --dark-color: #272d35;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

}

.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem;
    border: 1px solid #FEBF00;
    background: #FEBF00;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease-in;
}


.btn:hover {
    background: #fff;
    color: #333;
}

/* all sections */
/* .section {
    margin: 4rem 0;
} */

.section-header {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    margin: 3rem auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-color);
}


/* navbar */
.navbar {
    background: url('./images/rectangle4.png') center center/cover no-repeat rgba(189, 31, 23, 0.97);
    padding: 1rem 1rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.5s ease-in-out;
}


.navbar.navbar-scroll {
    background-color: rgba(189, 31, 23, 0.9);
    backdrop-filter: blur(10px);
}

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


.navbar .logo {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
}

.navbar .logo-name {
    font-family: 'Poppins';
    color: #fff;
    font-weight: 600;
    padding-bottom: 0.5rem;

    span {
        font-size: 1.9rem;
        font-weight: 400;
    }
}

.navbar .main-menu-items {
    display: flex;
    gap: 18rem;
}

.navbar .main-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1.1rem;
    font-weight: 500;

    font-family: 'Raleway';
}


.navbar a {
    color: white;
}

.navbar a:hover {
    color: var(--secondary-color);
}

.navbar .book-table a {
    color: #333;
    /* font-family: 'Roboto'; */
    font-size: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.navbar i {
    font-size: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
    display: none;
}

.navbar .mobile-menu-toggle {
    color: black;
    cursor: pointer;
}

.navbar .mobile-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(185, 172, 172, 0.8);
    opacity: 0.95;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);

    transition: transform 0.3s ease;

}

.navbar .mobile-menu-items.active {
    transform: translateX(0);

}

.navbar .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.2rem;
}


/* hero */
.hero {
    background: url('./images/rectangle4.png') center center/cover no-repeat rgba(189, 31, 23, 0.97);
    padding: 1rem 2rem 5rem;
}

.hero .hero-flex {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8rem;
    position: relative;
}

.hero .hero-text-content {
    color: white;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: start;
    gap: 25px;
    position: relative;
}


.headline-overlay {
    position: absolute;
    top: -110%;
    right: -65%;
    background: linear-gradient(to right, rgba(189, 31, 23, 0), rgba(189, 31, 23, 0.4));
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;

    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
}

.hero p {
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.1;
}


.hero .offer-badge {
    position: absolute;
    bottom: 0.9%;
    right: 0%;
    padding: 1.3rem;
    background: #FEBF00;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.hero .offer-badge::after {
    content: '';
    position: absolute;
    top: 6.5%;
    left: 8%;
    width: 5rem;
    height: 5rem;
    border: 2px dashed rgba(189, 31, 23, 0.9);
    border-radius: 50%;
}

.hero .offer-badge span {
    font-weight: 700;
}

/* about section */
.about-info {
    padding: 2rem 0;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.about-flex {
    display: grid;
    /* align-items: start; */
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.about-image-side {
    grid-column: span 2;
}

.about-content-side {
    grid-column: span 2;
}

.image-container {
    position: relative;
}

.main-about-img {
    width: 100%;
    display: block;
}

.badge-experience {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-circle {
    width: 5rem;
    height: 5rem;
    border: 4px solid #FEBF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}


.tabs-container {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #c93939;
    margin-bottom: 1.2rem;
}

.tab-link {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
}

.tab-link.active {
    background-color: #B71C1C;
    color: #fff;
}

.tab-content-wrapper h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.content {
    display: none;
    /* Hide all by default */
}

.content.active {
    display: block;
    /* Show only the one with the active class */
}


.about-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;

    i {
        color: #BD1F17;
    }
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BD1F17;

    i {
        font-size: 1.5rem;
    }
}

.salad {
    position: absolute;
    right: 0px;
    top: 50%;
    width: 120px;
}

/* Popular food */
.popular-foods {
    background-color: #FBF7F2;
    padding: 6rem 0;
    margin-bottom: 1px;
    position: relative;
}

.popular-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
}

.sub-headline {
    color: #BD1F17;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #272d35;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.control-btn:hover {
    color: #BD1F17;
    transform: scale(1.1);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.food-card {
    background: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.food-img {
    margin-bottom: 1rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-img img {
    max-height: 100%;
    object-fit: cover;
}

.food-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.food-info p {
    font-size: 0.9rem;
    color: #333;
}

.divider {
    width: 50px;
    height: 4px;
    background: #BD1F17;
    margin: 0 auto 1.2rem;
}

.habijabi {
    position: absolute;
    top: 25%;
}

/* booking */
.booking-section {
    background: url('./images/booking-background.jpg') center top/cover no-repeat;
    padding: 6rem 0;
    color: white;
}

.booking-container {
    display: flex;
    align-items: center;
}

.booking-content {
    max-width: 600px;
}

.text-white {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.booking-desc {
    margin: 1.5rem 0 2rem;
    padding-right: 5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #F7F8F9;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.input-group.full-width {
    grid-template-columns: 1fr;
}

.booking-form input,
.booking-form textarea {
    background: transparent;
    border: 1px solid #fff;
    padding: 0.8rem 1rem;
    color: #fff;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #fff;
    opacity: 0.8;
}

.btn-yellow {
    padding: 1rem 2rem;
    width: fit-content;
    cursor: pointer;
}

/* customer review */
.testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 50px;
}

.testimonial-header .sub-title {
    color: #BD1F17;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.testimonial-header .title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
}

/* .slider-controls {
    display: flex;
    gap: 15px;
} */

.testimonial-card {
    display: flex;
    background-color: white;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /* overflow: hidden; */
}

.text-column {
    flex: 1;
    background-color: #FEBF00;
    padding: 60px 60px;
    color: #111;
    position: relative;
}

.image-column {
    flex: 1.5;
    position: relative;
}

.food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
}

.quote-icon {
    font-size: 1rem;
    position: absolute;
    top: 70px;
    left: 60px;
}

.quote-text {
    font-size: 1.3rem;
    padding-left: 2rem;
    padding-top: 1rem;
    margin-bottom: 8rem;
}

.auth-divider {
    width: 80%;
    height: 1.5px;
    background-color: black;
    margin-left: 2rem;
    margin-right: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.auth-divider::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    background-color: #BD1F17;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
    margin-right: 3rem;
}

.author-name {
    font-family: 'Bebas Neue';
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.author-location {
    font-size: 13px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.flower-pattern {
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 4rem;
    color: #111;
}

.play-button {
    position: absolute;
    top: 45%;
    left: 46%;
    width: 50px;
    height: 50px;
    background: #FEBF00;
    border-radius: 50%;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}


.tomato {
    position: absolute;
    width: 120px;
    left: 0%;
    top: 15%;
}

.grass {
    position: absolute;
    width: 250px;
    right: 0%;
    bottom: 5%;
}

/* Footer */
.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75)),
        url('./images/footer.jpg') center center/cover no-repeat;
    padding: 5rem 0 3rem;
    color: white;
    text-align: center;
}

.footer-main-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 5rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #F7F8F9;
}

.footer-icon {
    font-size: 1.5rem;
    color: #FEBF00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FEBF00;
    color: #333;
}

.copyright {
    font-size: 1.2rem;
}

@media (max-width:768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar .main-menu-items {
        display: none;
    }

    .navbar .mobile-menu {
        display: block;
    }

    .navbar .mobile-menu-toggle {
        display: block;
        padding: 10px;
    }

    /* hero */
    .hero {
        background-position: center;
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .hero-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .headline-overlay {
        position: absolute;
        top: -70%;
        right: 10%;
        background: linear-gradient(to right, rgba(189, 31, 23, 0), rgba(189, 31, 23, 0.2));
    }

    .hero-text-content p {
        br {
            display: none;
        }
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: 700;

        /* padding-top: 1rem; */
        /* padding-bottom: 1rem; */
    }

    .hero p {
        font-size: 1rem;
        /* margin-top: 1rem; */
        line-height: 1.1;
    }

    .hero .offer-badge {
        /* position: absolute; */
        bottom: 3%;
        right: 10%;
    }

    /* about */
    .about-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: -3rem;
    }

    .about-image-side,
    .about-content-side {
        grid-column: span 1;
    }

    .badge-experience {
        top: 10px;
        left: 10px;
        padding: 0.8rem 1rem;
    }

    .progress-circle {
        width: 4rem;
        height: 4rem;
    }

    /* Stack Features row into a single column */
    .features-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 2rem;
    }

    .tab-content-wrapper h2 {
        font-size: 1.5rem;
    }

    .salad {
        display: none;
    }

    /* popular food */
    .popular-foods {
        padding: 4rem 0;
        padding-bottom: 5rem;
    }

    .popular-header-flex {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .slider-controls {
        position: absolute;
        bottom: 3%;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .food-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .habijabi {
        display: none;
    }

    .food-card {
        display: none;
    }

    .food-card:nth-of-type(1) {
        display: block;
    }

    /* booking */
    .input-group {
        grid-template-columns: 1fr;
    }

    /* .booking-content {
        text-align: left;
    } */

    .booking-desc {
        padding-right: 0;
    }

    .main-title {
        font-size: 2rem;
        font-weight: 600;
    }

    /* customer */
    .testimonial-card {
        flex-direction: column-reverse;
    }

    .testimonial-header .title {
        font-size: 28px;
        max-width: 100%;
    }

    .testimonials-slider-controls {
        position: absolute;
        bottom: 1%;
        left: 35%;
    }

    .flower-pattern {
        /* position: absolute; */
        bottom: 0px;
        left: 0px;
        width: 2rem;
        color: #111;
    }

    .text-column {
        /* flex: 1;
        background-color: #FEBF00; */
        padding: 5px 5px;
        /* color: #111;
        position: relative; */
    }

    .quote-icon {
        font-size: 1rem;
        position: absolute;
        top: 20px;
        left: 15px;
    }

    .quote-text {
        /* font-size: 1.3rem;
        padding-left: 2rem;
        padding-top: 1rem; */
        margin-bottom: 2rem;
    }


    .tomato {
        display: none;
    }

    .grass {
        display: none;
    }

    /* Footer */
    .footer-section {
        /* background: linear-gradient(rgba(0, 0, 0, 0.75)),
            url('./images/footer.jpg') center center/cover no-repeat; */
        padding: 2rem 0 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-section {
        padding-top: 5rem;
    }

    .footer-main-title {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }


}