/* ==========================================
GLOBAL SETTINGS
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background-color: #E8C8C1;
    color: #6E4A44;
    line-height: 1.7;

}

a {

    text-decoration: none;
    color: inherit;

}

img {

    width: 100%;
    display: block;
    object-fit: cover;

}

/* ==========================================
CONTAINER
========================================== */

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}

/* ==========================================
HEADER
========================================== */

.header {

    background: white;
    padding: 22px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);

    position: sticky;
    top: 0;
    z-index: 100;

}

.header .container {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {

    font-size: 30px;
    font-weight: 700;
    color: #2F6D49;

}

.navigation {

    display: flex;
    gap: 35px;
    align-items: center;

}

.navigation a {

    font-size: 15px;
    font-weight: 500;
    transition: .3s;

}

.navigation a:hover {

    color: #C46E5D;

}

/* ==========================================
PLAT DU JOUR
========================================== */

.hero-section {

    padding: 80px 0;

}

.hero-container {

    max-width: 900px;
    text-align: center;

}

.hero-title {

    font-size: 72px;
    font-weight: 700;
    color: #FFF4ED;

    text-shadow:
    4px 4px 0 rgba(203,120,100,.55);

    margin-bottom: 10px;

}

.hero-subtitle {

    font-size: 30px;
    color: #A44740;
    margin-bottom: 50px;

}

/* ==========================================
DAILY CARD
========================================== */

.daily-card {

    display: flex;
    gap: 40px;

    background: #FFF9F5;
    border-radius: 30px;
    padding: 35px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);

    transition: .3s;

    align-items: center;

}

.daily-card:hover {

    transform: translateY(-4px);

}

.daily-image {

    width: 260px;
    flex-shrink: 0;

}

.daily-image img {

    border-radius: 25px;
    height: 260px;

}

.daily-content {

    flex: 1;
    text-align: left;

}

.daily-content h2 {

    font-size: 36px;
    color: #B85F4D;
    margin-bottom: 10px;

}

.daily-price {

    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;

}

.daily-description {

    font-size: 16px;
    margin-bottom: 25px;
    color: #555;

}

.daily-tags {

    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-bottom: 25px;

}

.daily-tags span {

    background: #F6E6DF;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;

}

.daily-button {

    border: none;
    padding: 15px 32px;
    border-radius: 40px;

    background: #C46E5D;
    color: white;

    cursor: pointer;
    font-size: 16px;

    transition: .3s;

}

.daily-button:hover {

    background: #AD5645;

}

/* ==========================================
INTRODUCTION
========================================== */

.daily-introduction {

    margin-top: 40px;
    padding: 30px;
    font-size: 18px;
    color: #8B4E44;
    text-align: left;

}

.daily-introduction p {

    margin-bottom: 15px;

}

/* ==========================================
NOS PLATS
========================================== */

.menu-section {

    padding-bottom: 100px;

}

.section-title {

    font-size: 72px;
    text-align: center;

    color: #FFF4ED;

    text-shadow:
    4px 4px 0 rgba(203,120,100,.55);

    margin-bottom: 10px;

}

.section-subtitle {

    text-align: center;
    margin-bottom: 60px;
    font-size: 20px;
    color: #A44740;

}

/* ==========================================
MENU GRID
========================================== */

.menu-grid {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;

}

.menu-card {

    background: #FFF9F5;
    border-radius: 25px;

    overflow: hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    transition: .3s;

}

.menu-card:hover {

    transform: translateY(-5px);

}

.menu-photo img {

    height: 260px;

}

.menu-content {

    padding: 25px;

}

.menu-content h3 {

    font-size: 26px;
    color: #B85F4D;
    margin-bottom: 15px;

}

.menu-content p {

    color: #666;
    font-size: 15px;

}

/* ==========================================
FOOTER
========================================== */

.footer {

    background: white;
    padding: 40px 0;
    text-align: center;

    border-top:
    1px solid rgba(0,0,0,0.06);

}

.footer p {

    font-size: 15px;
    color: #777;

}

/* ==========================================
TABLET
========================================== */

@media(max-width:900px){

    .daily-card{

        flex-direction: column;
        text-align:center;

    }

    .daily-content{

        text-align:center;

    }

    .daily-tags{

        justify-content:center;

    }

    .menu-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .header .container{

        flex-direction:column;
        gap:20px;

    }

    .navigation{

        flex-wrap:wrap;
        justify-content:center;

        gap:18px;

    }

    .hero-title{

        font-size:50px;

    }

    .section-title{

        font-size:50px;

    }

    .hero-subtitle{

        font-size:24px;

    }

    .daily-image{

        width:100%;

    }

    .daily-image img{

        height:300px;

    }

}
