/* Styles pour la v2 du menu Firebox */

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

html {
    font-size: 16px; /* 1rem = 16px */
}

body {
    width: 1080px;
    height: 1920px;
    overflow: hidden;
    font-family: 'Urbanist', sans-serif;
    background: url('FIREBOX-base.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-content: start;
}

.column-left,
.column-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cartes flottantes par catégorie */
.category-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

/* Couleurs par catégorie */
.category-card.burgers {
    border-left: 4px solid #ff6b35;
}

.category-card.burgers h2 {
    color: #ff6b35;
}

.category-card.kids {
    border-left: 4px solid #ffd23f;
}

.category-card.kids h2 {
    color: #ffd23f;
}

.category-card.grillades {
    border-left: 4px solid #d2691e;
}

.category-card.grillades h2 {
    color: #d2691e;
}

.category-card.salades {
    border-left: 4px solid #4caf50;
}

.category-card.salades h2 {
    color: #4caf50;
}

.category-card.desserts {
    border-left: 4px solid #e91e63;
}

.category-card.desserts h2 {
    color: #e91e63;
}

.category-card.boissons {
    border-left: 4px solid #2196f3;
}

.category-card.boissons h2 {
    color: #2196f3;
}

.category-card.accompagnements {
    border-left: 4px solid #ff9800;
}

.category-card.accompagnements h2 {
    color: #ff9800;
}

/* Styles des tableaux */
.pricelist {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricelist th,
.pricelist td {
    padding: 0.5rem;
    text-align: left;
    vertical-align: bottom;
}

.pricelist th {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    padding-bottom: 1rem;
}

.pricelist th {
    font-weight: 600;
    font-size: 1rem;
}

.pricelist tbody tr:first-child td {
    padding-top: 1rem;
}

/* Largeurs fixes pour les colonnes */
.pricelist th:first-child,
.pricelist td:first-child {
    width: 60%; /* Colonne produit */
}

.pricelist th:nth-child(2),
.pricelist td:nth-child(2) {
    width: 20%; /* Colonne Seul/Grande */
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricelist th:last-child,
.pricelist td:last-child {
    width: 20%; /* Colonne Menu/Petite */
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricelist td:first-child {
    font-size: 1.5rem; /* 32pt équivalent */
    font-weight: 600;
}

.product-note {
    font-style: italic;
    font-weight: 400 !important;
}

/* Produits en rupture de stock */
.out-of-stock {
    opacity: 0.3;
}

/* Styles des titres */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* Mentions légales */
.mentions-legales {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    font-size: 1rem;
    line-height: 1.4;
}

.mentions-legales p {
    margin: 0;
    color: #ffffff;
}
