/* --- Variables de Design --- */
:root {
    --color-gold: #D4AF37; /* Couleur or du logo "VP studio" */
    --color-blue: #0076C0; /* Bleu de la devanture */
    --color-dark: #1A1A1A; /* Noir/anthracite des meubles intérieurs */
    --color-wood: #E0C9A6; /* Teinte claire des panneaux en bois */
    --color-light: #F9F9F9;
    
    --font-heading: 'Playfair Display', serif; /* Élégant pour les titres */
    --font-body: 'Poppins', sans-serif; /* Moderne et lisible */
    --shadow-soft: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- Styles de base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

/* --- En-tête (Header) --- */
header {
    background-color: var(--color-blue); /* Bleu de la devanture */
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid var(--color-gold); /* Rappel or */
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    border-bottom: none;
    margin: 0;
}


/* --- Grille principale (Mise en page) --- */
.main-grid {
    display: grid;
    grid-template-columns: 300px 1fr; /* Sidebar fixe, contenu flexible */
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* --- Sidebar de Contact --- */
.contact-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.contact-info-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--color-gold);
}

.contact-info-card h2 {
    font-family: var(--font-heading);
    color: var(--color-blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 25px;
}

.contact-info-card h2:first-child {
    margin-top: 0;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-gold);
}

.contact-link.phone {
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-link.address {
    font-weight: 300;
}

.open {
    color: #27ae60;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* --- Galerie de Contenu --- */
.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux images côte à côte */
    gap: 20px;
}

.gallery-item.large {
    height: auto;
    background: none;
    box-shadow: var(--shadow-soft); /* Tu peux garder l'ombre si tu veux qu'elle ressorte */
}

.gallery-item.large img {
    width: 100%;
    height: auto;
    display: block; /* Supprime l'espace vide sous l'image */
    object-fit: inherit; /* Utilise le format réel de ton fichier */
}

.gallery-item.last {
    box-shadow: none;
    background: none;
    padding: 20px 0;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-dark);
    text-align: center;
    font-style: italic;
    border-top: 2px solid var(--color-wood);
    padding-top: 20px;
}

figcaption:not(.intro-text) {
    background-color: rgba(26, 26, 26, 0.8); /* Fond sombre */
    color: white;
    padding: 10px 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-weight: 300;
    font-size: 0.9rem;
}

/* --- Pied de page --- */
footer {
    text-align: center;
    padding: 40px;
    background-color: var(--color-dark);
    color: #aaa;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* --- Adaptation Mobile (Responsive) --- */
@media (max-width: 900px) {
    .main-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
    }
    
    .contact-sidebar {
        position: static; /* La sidebar ne colle plus */
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .gallery-row {
        grid-template-columns: 1fr; /* Les images intérieures s'empilent */
    }
    
    .intro-text {
        font-size: 1.1rem;
    }

    .header-icon {
        width: 30px;
        height: 30px;
    }
    .brand-name {
        font-size: 2rem;
    }
    .header-logo-link {
        gap: 10px;
    }
}

/* Styles pour le statut dynamique */
.status {
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 4px;
}

.status.open {
    color: #27ae60; /* Vert */
    background-color: rgba(39, 174, 96, 0.1);
}

.status.closed {
    color: #e74c3c; /* Rouge */
    background-color: rgba(231, 76, 60, 0.1);
}

/* Bouton Tarif dans la sidebar */
#btn-tarif {
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    background-color: var(--color-dark);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#btn-tarif:hover {
    background-color: var(--color-gold);
    color: white;
}

/* Design de la Carte de Tarifs (Inspiré de WhatsApp Image 2026-06-04 at 23.08.36.jpeg) */
.price-menu {
    background-color: #05162a; /* Bleu très sombre comme la photo */
    color: #d4af37; /* Or */
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.price-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
}

.price-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 4px;
    margin: 10px 0 0 0;
}

.price-category {
    margin-bottom: 35px;
}

.price-category h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #d4af37;
    display: inline-block;
    padding-right: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.5);
    margin: 0 10px;
}

/* Icônes or */
.price-category h4 span {
    margin-right: 10px;
}

/* Bouton de Réservation (RDV) */
#btn-rdv {
    display: block;
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    background-color: var(--color-gold); /* Fond Or */
    color: var(--color-dark); /* Texte sombre pour le contraste */
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#btn-rdv:hover {
    background-color: #e5c04a; /* Un or un peu plus clair au survol */
    transform: translateY(-2px); /* Petit effet de soulèvement */
}

.btn-navigation {
    display: block;
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-navigation:hover {
    background-color: var(--color-dark);
    color: white;
}

/* Grille de prestations */
.presta-grid {
    display: grid;
    /* Créé des colonnes de 300px minimum, et remplit l'espace automatiquement */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.presta-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid white;
    background-color: white;
    transition: transform 0.3s ease;
}

.presta-item img {
    width: 100%;
    height: 400px; /* Hauteur fixe pour que toutes les photos soient alignées */
    object-fit: cover; /* Recadre l'image proprement sans la déformer */
    display: block;
}

.presta-item:hover {
    transform: scale(1.02);
    border-color: var(--color-gold);
}

/* Ajustement mobile pour les photos */
@media (max-width: 600px) {
    .presta-item img {
        height: 350px;
    }
}

.legal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.legal-card h2 {
    font-family: var(--font-heading);
    color: var(--color-blue);
    margin-bottom: 10px;
}

.legal-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.legal-card hr {
    border: none;
    border-top: 2px solid var(--color-gold);
    width: 50px;
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    width: 100%;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    color: #888;
    font-family: var(--font-body);
}

.footer-content a {
    color: #888;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Ajustement pour que le footer ne colle pas trop sur les petits écrans */
@media (max-width: 900px) {
    footer {
        margin-top: 30px;
        padding-bottom: 20px;
    }
}

/* Supprime le soulignement et la couleur par défaut des liens sur le logo */
header a {
    text-decoration: none;
    color: inherit; /* Force le lien à utiliser la couleur définie dans .brand-name */
    display: inline-block; /* Permet au lien de bien englober le titre */
}

header a {
    text-decoration: none;
    color: inherit; /* Force le lien à utiliser la couleur définie dans .brand-name */
    display: inline-block; /* Permet au lien de bien englober le titre */
}

header a:hover .brand-name {
    opacity: 0.8; /* Le logo s'estompe très légèrement au survol de la souris */
    transition: opacity 0.3s ease;
}

/* --- Message de présentation d'accueil --- */
.salon-intro {
    text-align: center;
    padding: 20px 10px 10px 10px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--color-gold); /* Rappel subtil de l'or */
}

.salon-intro h2 {
    font-family: var(--font-heading);
    color: var(--color-blue); /* Le bleu de votre devanture */
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.salon-intro p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto; /* Centre le texte proprement */
}

/* Ajustement pour les téléphones */
@media (max-width: 600px) {
    .salon-intro h2 {
        font-size: 1.4rem;
    }
    .salon-intro p {
        font-size: 0.95rem;
    }
}

/* Alignement du logo et du nom dans le header */
.header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Espace entre le logo et le texte "VP studio" */
    text-decoration: none;
    color: inherit;
}

/* Style de la miniature du logo */
.header-icon {
    width: 70px;  /* Taille adaptée pour le bandeau */
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}



