/* === STYLE.CSS - Le Signature === */

/* BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #ffcc00;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === CONTAINER === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* === HEADER === */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    color: #ffcc00;
    font-size: 1.8rem;
}
nav {
    display: flex;
    flex-wrap: wrap;
}
nav a {
    margin: 0 15px;
    font-weight: bold;
}

.signature-title {
  font-family: 'Delius Swash Caps', cursive;
  color: #ffcc00;
  font-size: 2.7rem;
  letter-spacing: 2px;
  font-weight: normal;
  text-align: center;
  margin: 28px 0 18px 0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.22);
  background: none;
}

/* === HERO === */
.hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    height: 80vh;
    background: url('Images/Image1.png') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-text {
    position: relative;
    z-index: 2;
}
.hero-text h2 {
    font-size: 2.5rem;
    color: #ffcc00;
}
.hero-text p {
    margin: 15px 0;
    font-size: 1.2rem;
}
.btn {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #ffcc00;
    color: #000;
}

/* === MENU-GRID === */
.menu {
    padding: 60px 0;
    text-align: center;
}
.menu h2 {
    color: #ffcc00;
    margin-bottom: 40px;
}
/* Pour le contenu classique de la grille articles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.menu-grid article {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}
.menu-grid article:hover {
    transform: translateY(-5px);
}
.menu-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.menu-grid h3 {
    color: #ff0000;
    margin-top: 10px;
}
.menu-grid p {
    padding: 10px;
    font-size: 0.95rem;
}

/* === Spécial : images agrandissables de la carte === */
.menu-grid > a > img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    cursor: zoom-in;
    transition: transform 0.3s;
    margin: 0 auto;
    object-fit: contain;
}
.menu-grid > a > img:hover {
    transform: scale(1.04);
}

/* === OFFRES === */
.offres {
    background-color: #111;
    padding: 60px 0;
    text-align: center;
}
.offres h2 {
    color: #ffcc00;
    margin-bottom: 30px;
}
.offre-box {
    background-color: #1a1a1a;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
}
.offre-box h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* === CONTACT === */
.contact {
    padding: 60px 0;
    text-align: center;
}
.contact h2 {
    color: #ffcc00;
    margin-bottom: 30px;
}
.contact p {
    margin-bottom: 10px;
}
.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.logos img {
    border-radius: 8px;
    padding: 0;
    height: 40px;
    width: auto;
    object-fit: contain;
    background: none;
    box-shadow: none;
}

/* === FOOTER === */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 900px) {
    .hero {
        min-height: 36vh;
        height: 50vh;
    }
    .menu-grid, .logos {
        gap: 16px;
    }
    .menu-grid > a > img {
        max-width: 98vw;
    }
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    header h1 {
        font-size: 1.4rem;
    }
    nav a {
        margin: 0 8px;
        font-size: 0.9rem;
    }
    .hero-text h2 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .offre-box {
        width: 90%;
    }
    .menu, .offres, .contact {
        padding: 40px 0;
    }
}
@media (max-width: 600px) {
    .hero {
        min-height: 24vh;
        height: 28vh;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .offre-box {
        width: 98%;
        padding: 10px;
    }
    .logos {
        flex-direction: column;
        gap: 10px;
    }
    .hero-text h2 {
        font-size: 1.25rem;
    }
    .container, section {
        padding: 0 3vw;
    }
    .menu, .offres, .contact {
        padding: 20px 0;
    }
    .menu-grid img {
        height: 140px;
    }
    .contact p, .offre-box p {
        font-size: 0.98rem;
    }
    .menu-grid > a > img {
        max-width: 99vw;
    }
}
@media (max-width: 400px) {
    .hero-text h2 {
        font-size: 1.05rem;
    }
    .offre-box, .menu-grid article {
        padding: 6px;
    }
}
