/* =======================
RESET ET VARIABLES
======================== */
:root {
    --padding-vertical: 2.5rem; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Narrow', Arial, sans-serif;
    color: #111;
    background-color: #fff;
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =======================
HEADER ET LOGO
======================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--padding-vertical) 1.5rem;
}

.logo {
    text-decoration: none;
    color: #000;
}

.logo img {
    height: 30px; 
    width: auto;
    display: block;
}

/* =======================
MENU DÉROULANT
======================== */
.menu-container {
    position: relative;
}

.menu-toggle {
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    display: block; 
}

.menu-dropdown {
    position: absolute;
    top: -15px; 
    right: -5px;
    z-index: 100;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.menu-dropdown .menu-close {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
    line-height: 1;
}

.menu-dropdown ul {
    list-style: none;
}

.menu-dropdown ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-container.is-active .menu-toggle { display: none; }
.menu-container.is-active .menu-dropdown {
    visibility: visible; 
    opacity: 1;
    transform: translateY(0);
}

/* =======================
CONTENU PRINCIPAL
======================== */
.site-content {

    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* =======================
TITRE
======================== */
.site-title {
    text-align: center;
    font-size: 0.875rem; /* 14px */
    font-weight: 700; /* Gras */
    text-transform: uppercase; /* "BELLARA BERTHER" sera en majuscule */
    letter-spacing: 0.3em; 
    color: #111;

    width: 100%;
    max-width: 1000px;
    padding: 1rem 1.5rem 0;
    margin-bottom: 1.5rem; 
}

/* *
* C'EST L'AJOUT POUR "Architectes"
*
*/
.site-title .site-subtitle {
    display: block; /* Le force à passer à la ligne */
    text-transform: none; /* Annule les majuscules pour "Architectes" */
    font-weight: 400; /* Met le texte en police normale (non-gras) */
    letter-spacing: 0.15em; /* Un espacement plus standard */
    margin-top: 4px; /* Petit espace entre les deux lignes */
}
/* Fin de l'ajout */


/* =======================
VIDÉO
======================== */
.video-container {
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 1.5rem; 
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* =======================
FOOTER
======================== */
.site-footer {
    width: 100%;
    padding-bottom: 3rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 2rem;
    max-width: 1000px; 
    margin: 0 auto; 
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: center; 
}

.footer-column h3 {
    font-size: 0.75rem; 
    font-weight: 700; /* Gras */
    color: #333; 
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-column p {
    font-size: 0.875rem;
    color: #111;
    line-height: 1.5;
}

/* =======================
RESPONSIVE (Mobile)
======================== */
@media (max-width: 1024px) { }

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* =======================
STYLE DES LIENS DU FOOTER
======================== */
.footer-column p a {
    text-decoration: none; 
    color: #111;          
}

.footer-column p a strong {
    font-weight: 700; 
}

.footer-column p a:hover {
    text-decoration: underline;
}