/* ===================== RESET / BASE ===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* ===================== HEADER ===================== */
.header-white {
    background-color: white;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- LOGO ---------- */
.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transform: scale(3.3) translateY(17px);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* ---------- NAV ---------- */
.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: #e20025;
    color: white;
}
/* Menu items uniformes */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Le lien Livraison doit ressembler aux autres */
.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

/* Hover identique */
.nav-link:hover {
    background-color: #e20025;
    color: white;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero-new {
    background-color: #ffffff;
    padding: 80px 20px;
}

.hero-new-content {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-new-text p {
    font-size: 1.2em;
    line-height: 1.6;
}

.hero-new-images {
    display: flex;
    gap: 30px;
}

.hero-new-images img {
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===================== ABOUT ===================== */
.section-about {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bg {
    position: absolute;
    inset: 0;
    background: url('../images/FiletsPoulet.jpg') center / cover no-repeat;
    z-index: -2;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.about-content {
    background: rgba(255,255,255,0.37);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.about-content h2 {
    color: #e20025;
    font-size: 2.5em;
    font-weight: 700;
}

.about-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #222;
}

.about-content strong {
    font-weight: 700;
}

/* ===================== CATEGORIES ===================== */
.categories {
    padding: 80px 60px;
    background: #f9f9f9;
    text-align: center;
}

.categories-text h2 {
    font-size: 2.6em;
    margin-bottom: 10px;
    color: #222;
}

.categories-text p {
    font-size: 1.15em;
    color: #555;
}

.categories-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.categories-cards .card {
    text-decoration: none;
    color: #000;
    background: white;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categories-cards .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.categories-cards .card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.categories-cards .card h3 {
    padding: 15px;
    font-size: 1.2em;
    font-weight: 700;
    color: #000;
}

.categories-button {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.btn-menu {
    background-color: #e20025;
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-menu:hover {
    background-color: #b3001a;
    transform: translateY(-3px);
}

/* ===================== CONTACT ===================== */
.contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 80px 50px;
    background-color: #fff;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: #e20025;
    margin-bottom: 15px;
    font-size: 2em;
}

.contact-info h3 {
    color: #e20025;
    margin-bottom: 10px;
}

.contact-info h4 {
    margin-top: 20px;
    color: #8cc740;
}

.contact-info p {
    margin: 8px 0;
    font-size: 1.1em;
    color: #222;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 10px;
}

/* ===================== FOOTER ===================== */
.footer {
    background-color: #222;
    color: white;
    padding: 30px 50px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}

.footer-block {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-block h3 {
    color: #e20025;
    margin-bottom: 10px;
}

.footer-block p,
.footer-block a {
    color: white;
    margin-bottom: 5px;
    font-size: 0.95em;
    text-decoration: none;
}

.footer-block a:hover {
    color: #e20025;
}

.footer-copy {
    text-align: center;
    opacity: 0.7;
    font-size: 0.85em;
    margin-top: 20px;
}

/* ===================== RESPONSIVE ===================== */

/* 4K */
@media (min-width: 2560px) {
    .logo img { transform: scale(4) translateY(20px); }
}

/* TABLETTE + MOBILE */
@media (max-width: 1024px) {

    /* LOGO */
    .logo img {
        transform: scale(2.5) translateY(12px);
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        position: absolute;
        top: 30px;
        right: 30px;
    }

    /* MENU MOBILE */
    .nav {
        position: fixed;
        inset: 0;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav a {
        font-size: 1.4em;
    }

    /* HERO */
    .hero-new-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-new-images {
        flex-direction: column;
        align-items: center;
    }

    .hero-new-images img {
        width: 90%;
        max-width: 240px;
    }
}

/* MOBILE PETIT */
@media (max-width: 480px) {
    .logo img {
        transform: scale(2) translateY(10px);
    }
}

/* ===================== ANIMATION HAMBURGER ===================== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);

}
/* ===================== DROPDOWN DELIVERY ===================== */
.nav-delivery {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* DROPDOWN */
.delivery-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
    min-width: 160px;
    z-index: 9999;
}

/* Lien DoorDash */
.delivery-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #222;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

/* Hover rouge */
.delivery-dropdown a:hover {
    background-color: #e20025;
    color: white;
}

/* OUVERTURE AU HOVER */
.nav-delivery:hover .delivery-dropdown {
    display: block;
}

/* ===================== SECTION DELIVERY ===================== */
.delivery {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.delivery-content {
    max-width: 800px;
    margin: auto;
}

.delivery h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.delivery p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* Style commun */
.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-link img {
    height: 55px;
}

/* DoorDash → rouge */
.delivery-link.doordash {
    background-color: #e20025;
}

/* Uber Eats → vert */
.delivery-link.ubereats {
    background-color: #06c167;
}

/* Hover */
.delivery-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
