/* ------------------------
   RESET & BASE
------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: transparent;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top : 10px;
    overflow-x: hidden;
}


/* ------------------------
   HEADER
------------------------- */
.div-header {
    margin-top: 20px;
}




.left-col {
    flex: 0 0 300px;
}

/* Image à hauteur fixe (400px) sur écran >= 768px */
.left-col img {
    display: block;
    height: 600px;         /* hauteur forcée */
    object-fit: cover;     /* coupe l’image si besoin pour remplir */
}

/* Colonne de droite : occupe l'espace restant (70%) */
.right-col {
    flex: 1;
}

.right-col h2 {
    margin-bottom: 0.5rem;
}
.right-col p {
    line-height: 1.5;
}

/* MEDIA QUERY pour < 768px
   => on empile les colonnes, l’image redevient flexible */
@media screen and (max-width: 768px) {

    .container {
        flex-direction: column;
    }



    .left-col {
        display: flex;
        justify-content: center;
    }


}



/* PHRASE VERTICAL EN BAS A GAUCHE */
.vertical-phrase {
    position: fixed;
    bottom: 20px;
    left: 30px;

    transform: rotate(-90deg);
    transform-origin: bottom left;
    font-family: "Playfair Display", serif;
    font-size: 13px;
    z-index: 10;
}


@media screen and (min-width: 1000px) {
    .vertical-phrase {
        left: calc(50% - 500px + -10px);
    }
}


/* CONTENEUR MAGAZINE => 2 colonnes en grand écran */
.mag-container {
    max-width: 1000px;

    text-align: justify;

    margin: 0 auto;
    /* 2 colonnes + espace entre elles */
    column-count: 2;
    column-gap: 40px;
    /* Justification façon "magazine" */
    text-align: justify;
    padding-left: 15px;
    margin-bottom: 100px;
}

@media screen and (max-width: 800px) {
    .mag-container {
        margin: 30px;
    }
}



/* Bloc central elements */
/* En-tête : logo + nom de marque alignés horizontalement */
.header-mag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

}

.header-mag img {
    max-width: 500px;
    height: auto;
    display: block;
}
.brand-name {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Petite phrase explicative */
.small-phrase {
    text-align: center;
    margin: 1rem auto;
    max-width: 800px;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 20px;
}

/* Bloc des infos pratiques (numéro, mail, etc.) */
.info-block {

    max-width: 900px;
    margin: 2rem auto;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.info-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.info-block p {
    margin-bottom: 0.5rem;
}

/* Bouton centré */
.btn-site-div {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-magazine {
    font-family: "Playfair Display", serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;
    box-shadow: 0 4px 0 #ccc;
    transition: all 0.2s ease;
}
.btn-magazine:hover {
    box-shadow: 0 2px 0 #aaa;
    transform: translateY(2px);
}
.btn-magazine:active {
    box-shadow: none;
    transform: translateY(4px);
}

/* Citation en bas */
.mag-quote {
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    padding: 0 1rem;
    color: #555;
    margin-bottom: 100px;
}

.remove-texte-decoration {
    text-decoration: none;
}


.footer-iframe {
    margin-bottom: -10px;
}