/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    background: #fafafa;
    color: #333;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 100% de la fenêtre */
}

/* HEADER */
.site-header {
    width: 100%;
    height: 70px;
    background: #2c3e50;
    color: #fff;
    position: relative;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}
.logo img {
    height: 50px;
}
.main-nav ul.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}
.main-nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.main-nav ul.menu li a:hover {
    color: #f1c40f;
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MAIN */
.site-main {
    width: 100%;
    flex: 1;
}

/* Full section centered */
.full-section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.full-section .content {
    text-align: center;
    color: #fff;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
}
.full-section .section-logo {
    height: 100px;
    margin-bottom: 20px;
}

/* Section bloc */
.section-block {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}
.section-block .block-content {
    background: #fff;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.bg-image .block-content {
    background: rgba(255,255,255,0.95);
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    background: #fdfdfd;
}
.menu-category {
    margin-bottom: 50px;
}
.menu-category h3 {
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #2c3e50;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
}
.item-left h4 {
    margin-bottom: 5px;
    font-size: 1.2em;
    font-weight: 600;
}
.item-left .description {
    font-size: 0.95em;
    color: #555;
}
.item-left .annotations {
    font-size: 0.85em;
    color: #888;
}
.item-right {
    text-align: right;
}
.item-right p {
    margin-bottom: 5px;
    font-weight: 600;
}

/* affichage de la carte */
/* Section carte */
/* Wrapper centré avec max 900px */
.carte-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Section carte */
.carte-section {
    padding: 60px 20px;
    background: #fdfdfd;
}
.carte-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Catégorie */
.carte-category {
    margin-bottom: 60px;
}
.carte-category-title {
    font-size: 2em;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Grille des items */
.carte-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Item individuel */
.carte-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}
.carte-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.carte-item-name {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2c3e50;
}
.carte-item-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
}
.carte-item-annotation {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 15px;
}
.carte-item-prices p {
    font-weight: 600;
    margin: 3px 0;
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 992px) {
    .carte-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .carte-items {
        grid-template-columns: 1fr;
    }
}


.carte-item-prices span {
    font-weight: 400;
    font-size:14px;
    margin: 3px 0;
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 992px) {
    .carte-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .carte-items {
        grid-template-columns: 1fr;
    }
}

/* /affichage de la carte */

/* FOOTER */
.site-footer {
    width: 100%;
    background: #2c3e50;
    color: #fff;
}
.footer-top {
    padding: 40px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
}
.footer-left p, .footer-right p, .footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95em;
}
.footer-bottom {
    background: #1a252f;
    padding: 10px 20px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.85em;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    .item-right {
        text-align: center;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .main-nav ul.menu {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 70px;
        background: #2c3e50;
        width: 200px;
        padding: 20px;
        border-radius: 0 0 0 8px;
        box-shadow: -3px 3px 10px rgba(0,0,0,0.2);
    }
    .main-nav ul.menu.active {
        display: flex;
    }
    .burger {
        display: flex;
    }
}
