/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
}

/* =========================
   VARIABLES COULEURS
========================= */

:root {
    --primary: #B22222;
    --secondary: #FF6347;
    --gradient: linear-gradient(to right, #B22222, #FF6347);
}

/* =========================
   HEADER (mobile centré)
========================= */

header {
    display: flex;
    flex-direction: column;   /* met les éléments verticalement */
    align-items: center;      /* centre horizontalement */
    text-align: center;
    padding: 1rem;
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-img {
    margin: 0 auto;      
     display: flex;
    justify-content: flex-end; /* 👈 pousse le logo à droite *//* sécurité */
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   HERO
========================= */

.hero {
    background: url('monalisa/images/interieur-1.png') center/cover no-repeat;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hero-text {
    background: rgba(0,0,0,0.6);
    padding: 1.5rem;
    border-radius: 10px;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;            /* espace horizontal entre boutons */
    margin-top: 25px;     /* espace au-dessus */
    flex-wrap: wrap;
}

.second-line {
    margin-bottom: 35px;  /* espace entre les deux lignes */
}
.btn {
    background: var(--gradient);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
     min-width: 140px;
    padding: 20px 18px;
    padding-right: 10px;
}

/* =========================
   SERVICES
========================= */

.services {
    background: var(--gradient);
    padding: 2rem 1rem;
    color: white;
    text-align: center;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-item {
    text-align: center;
}

.service-icon {
    width: 40px;
    margin-bottom: 8px;
    filter: invert(100%);
}

/* =========================
   MENU
========================= */

.menu {
    padding: 2rem 1rem;
    text-align: center;
    background: #f9f9f9;
}

.menu h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.menu-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* =========================
   GALLERY
========================= */

.gallery {
    padding: 2rem 1rem;
    text-align: center;
}

.grid-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.grid-gallery img {
    width: 100%;
    border-radius: 8px;
}

/* =========================
   MODAL
========================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    margin: 30% auto;
    padding: 1.5rem;
    width: 90%;
    border-radius: 10px;
    text-align: center;
}

/* =========================
   FOOTER
========================= */

footer {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}