* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

/* html {
    scroll-behavior: smooth;
}  */

body {
    font-family: 'Montserrat',Arial, Helvetica, sans-serif;
    color: #333;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

header {
    background-color: rgba(255, 105, 180, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.liste ul {
    display: flex;
}

.liste ul li {
    margin: 0 20px;
}

.liste ul li a {
    color: #000;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.liste ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.liste ul li a:hover::after {
    width: 100%;
}

.btns {
    padding: 12px 25px;
    background: rgba(128, 0, 128, 0.8);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btns:hover {
    background: rgba(91, 5, 54, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.corps {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
}

.menu {
    max-width: 800px;
    padding: 0 20px;
}

.menu h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.v-m {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 105, 180, 0.8);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.v-m:hover {
    background: rgba(128, 0, 128, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.actu, .chaud, .froid {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #5b0536;
    margin-bottom: 15px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #ff69b4, #800080);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.choix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4, #800080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #666;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dish-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dish-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 105, 180, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.dish-info {
    padding: 20px;
}

.dish-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.dish-info p {
    color: #666;
    margin-bottom: 15px;
}

.order-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff69b4, #800080);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.order-btn:hover {
    background: linear-gradient(135deg, #800080, #5b0536);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #5b0536, #800080);
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff69b4;
}

.footer-section.about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.socials {
    margin-top: 20px;
}

.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: #ff69b4;
    transform: translateY(-3px);
}

.footer-section.contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-section.contact i {
    margin-right: 10px;
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}


.hamburger {
    height: 90px;
    width: 100px;
    position: absolute;
    top: 60%;
    left: 90%;
    transform: translate(-50%, -50%);
    display: none;
}

.class1, .class2, .class3 {
    position: fixed;
    height: 4px;
    width: 40px;
    background: #000;
    border-radius: 5px;
    top: 15px;
}

.class2 {
    top: 30px;
    width: 25px;
    height: 4px;
}

.class3 {
    top: 45px;
}


.actu .choix ul {
    display: flex;
    justify-content: space-between;
}

.actu .choix ul a {
    color: #000;
}


.actu .prop ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actu .prop ul a {
    color: #000;
}

.actu .prop .buf:hover {
    transform: scale(1.06);
    transition: transform 0.4s ease;
}

.actu .prop .loc:hover {
    transform: scale(1.06);
    transition: transform 0.4s ease;
}

.actu .buffet .i-buf img{
    max-width: 200px;
    margin-left: 40%;
}

.foot {
    height: 80px;
    border-radius: 3px;
    margin: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: sticky;
    margin-left: 78%;
}

.cart {
    display: flex;
    background: linear-gradient(135deg, #ff69b4, #800080);
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: none;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 70px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.cart:hover {
    background: linear-gradient(135deg, #800080, #5b0536);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fa-solid {
   color: white;
   font-size: 1.5rem;
}

.cart p {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff69b4;
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header img {
    width: 100%;
    max-height: 200px; 
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-options {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #5b0536;
}

.option-group select, .option-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

.option-group select:focus, .option-group input:focus {
    outline: none;
    border-color: #ff69b4;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff69b4, #800080);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
        background: linear-gradient(135deg, #800080, #5b0536);
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

/* Pagte de récapitulatif */
.cart-page {
    display: none;
    padding: 40px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.back-to-menu {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff69b4, #800080);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-to-menu:hover {
    background: linear-gradient(135deg, #800080, #5b0536);
    transform: translateY(-2px);
    box-shadow:  0 6px 10px rgba(0, 0, 0, 0.15);
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    color: #5b0536;
    margin-bottom: 5px;
}

.item-price {
    font-weight: bold;
    color: #ff69b4;
}

.item-quantity {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-value {
    margin: 0 10px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    color: #e63946;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.cart-summary h3 {
    color: #5b0536;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff69b4;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 2px solid #ff69b4;
    padding-top: 10px;
    margin-top: 10px;
    color: #5b0536;
}

.customer-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.customer-form h3 {
    color: #5b0536;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff69b4;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #5b0536;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
}

.form-group textarea {
    border-radius: 15px;
    min-height: 100px;
    resize: vertical;
}

.map-container {
    height: 300px;
    margin-bottom: 30px;
    background: #eee;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, #ffefef, #ffffff);
    border: 2px dashed #ff69b4;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #5b0536;
}

.location-info {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 10px;
    text-align: center;
    display: none;
}

.location-btn {
    background: linear-gradient(135deg, #ff69b4, #800080);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-btn:hover {
    background: linear-gradient(135deg, #800080, #5b0536);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.submit-order {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-order:hover {
    background: linear-gradient(135deg, #128C7E, #0a6b5a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


@media screen and (max-width: 950px) {
    .container {
        padding: 0;
    }
   
    .hamburger {
        display: block;
        margin-top: 5px;
    }
    
    .btn {
        top: 90vh;
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
        z-index: 99;
    }

    .btn.mobile-menu {
        margin-left: 0;
    }

    .liste {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 105, 180, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 99;
    }

    .corps.mobile-menu {
        height: 91vh;
    }

    .choix.mobile-menu {
        display: none;
    }

    .choix ul {
        flex-direction: column;
        gap: 30px;
    }

    .liste.mobile-menu {
        left: 0;
    }

    .liste ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .container .liste ul li {
        margin: 60px 0;
        font-size: 1.2rem;
    }

    .menu h1 {
        font-size: 2.5rem;
    }

    .menu p {
        font-size: 1.2rem;
    }

    .actu .choix ul {
    display: flex;
    justify-content: space-between;
    }

    .cart-page {
        padding: 20px;
    }
    
   
}

@media screen and (max-width: 600px) {
    .menu h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .choix {
        grid-template-columns: 1fr;
    }
}