/* ===========================================
   LA ROULOTTE GOURMANDE - STYLES REFACTORISÉS
   =========================================== */

/* ===========================================
   RESET ET BASE
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================================
   VARIABLES CSS
   =========================================== */
:root {
    /* Couleurs principales */
    --primary-color: #73CBF3;
    --secondary-color: #5d4037;
    --accent-color: #f0ebc1;
    --text-dark: #6d4c41;
    
    /* Effets visuels */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    
    /* Typographie */
    --font-family: 'Kickers', sans-serif;
}

/* ===========================================
   TYPOGRAPHIE
   =========================================== */
@font-face {
    font-family: 'Kickers';
    src: url('../fonts/Kickers-Regular.woff2') format('woff2'),
         url('../fonts/Kickers-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ===========================================
   LAYOUT PRINCIPAL
   =========================================== */
body {
    font-family: var(--font-family);
    background: var(--accent-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.menu-container {
    max-width: 900px;
    width: 100%;
    background: var(--accent-color);
    overflow: hidden;
    position: relative;
}

/* ===========================================
   HEADER
   =========================================== */
.menu-header {
    background: var(--accent-color);
    padding: 20px;
    text-align: center;
    position: relative;
}

.menu-title {
    color: var(--primary-color);
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding: 0 55px;
    z-index: 2;
    text-shadow: white 5px 5px 5px;
}

.menu-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-color: #CDC195;
    border-radius: 50%;
    z-index: -1;
}

.restaurant-name {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px white;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 5px;
    text-shadow: white 5px 5px 5px;
}

/* ===========================================
   CONTENU PRINCIPAL
   =========================================== */
.menu-content {
    padding: 0 20px 20px;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.column {
    background: #E2DAAB;
    padding: 25px;
    border-radius: 25px;
}

/* ===========================================
   SECTIONS
   =========================================== */
.menu-section {
    margin-top: 15px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

/* ===========================================
   TITRE AVEC PRIX
   =========================================== */
.title-with-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.title-with-price span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.base-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.base-price-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: normal;
}

.base-price-amount {
    font-size: 2.7rem;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1;
}

/* ===========================================
   ITEMS DU MENU
   =========================================== */
.menu-item {
    padding: 12px 0;
}

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

.item-name {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1rem;
}

.item-price {
    font-weight: 300;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.item-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 5px;
    font-style: normal;
}

/* ===========================================
   OPTIONS ET SOUS-ITEMS
   =========================================== */
.item-options,
.item-supplements,
.sub-items {
    margin-top: 8px;
    padding-left: 15px;
}

.item-option,
.supplement-item,
.sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.item-option .option-name,
.supplement-name,
.sub-item-name {
    color: var(--text-dark);
    font-weight: 500;
}

.item-option .option-price,
.supplement-price,
.sub-item-price {
    color: var(--secondary-color);
    font-weight: 300;
}

/* ===========================================
   DÉTAILS DES ITEMS
   =========================================== */
.item-details {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.item-details strong {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.supplements-title {
    font-weight: 600;
    margin: 8px 0 5px 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2373CBF3' fill-opacity='1' d='M0,32L30,10.7C60,-11,120,-53,180,-32C240,-11,300,75,360,96C420,117,480,75,540,53.3C600,32,660,32,720,53.3C780,75,840,117,900,101.3C960,85,1020,11,1080,16C1140,21,1200,107,1260,138.7C1320,171,1380,149,1410,138.7L1440,128L1440,320L1410,320C1380,320,1320,320,1260,320C1200,320,1140,320,1080,320C1020,320,960,320,900,320C840,320,780,320,720,320C660,320,600,320,540,320C480,320,420,320,360,320C300,320,240,320,180,320C120,320,60,320,30,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.footer p {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    color: #e3f2fd;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg) skewX(-2deg);
    font-family: var(--font-family);
    letter-spacing: 0.5px;
    padding: 20px 0;
    line-height: 1.2;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .restaurant-name {
        font-size: 2rem;
    }
    
    .menu-header {
        padding: 20px 20px 15px;
    }
    
    .column {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .restaurant-name {
        font-size: 1.8rem;
    }
    
    .menu-header {
        padding: 15px 15px 10px;
    }
    
    .column {
        padding: 15px;
    }
} 
  