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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top : 10px;
    margin-bottom: 50px;
}


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



/* Conteneur global centré, deux colonnes en flex */
.container {

    max-width: 1000px;
    margin: 0 auto;


    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;

    padding: 20px;

}



.container p {
    margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
    .container {
        margin: 30px;
    }
}

/* Colonne de gauche : ~30% de la largeur */
.left-col {
    flex: 0 0 300px;
}

/* Image à hauteur fixe (400px) sur écran >= 768px */
.left-col img {
    display: block;
    height: 600px;
    object-fit: cover;
}

/* 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: 1000px) {

    .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;

}


@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;
    }
}


/* bouton magazine enbas */

.btn-site-div {
    display: flex;
    justify-content: center;
}

.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;
}



/* pour taiulle pohoto principal */
@media screen and (max-width: 1000px) {
    .img-principal {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .img-principal {
        width: 100%;
    }
}

