@charset "iso-8859-1";

p {
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
}


/* body generaux (chartes graphique) */

body {

    color: #494649;
    scrollbar-face-color: #000000;
    scrollbar-highlight-color: #FFFFFF;
    scrollbar-shadow-color: #000000;
    scrollbar-arrow-color: #FFFFFF;

    scrollbar-base-color: #000000;
}

/* classes */

.titre {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    font-weight: bold;
    color: black;
    text-decoration: underline;
    font-size: 19pt;
}

.little {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-style: italic;
}

.soustitre {
    font-weight: bold;
    font-size: 16pt;
    color: #C4677A;
}

.delire {
    font-family: Arial, Comic Sans MS, Trebuchet MS, Arial BlackChiller, Mistral, Michelle, Lucida Handwritting;
}

.normale {
    font-family: Helvetica, Arial, sans-serif;
}

.copyright {
    color: white;
    font-size: 10pt;
    font-style: italic;
    text-transform: capitalize;
    text-align: center;
}

/* liens par défaut */
A:link {
    text-decoration: none;
    color: #C4677A;
}

A:visited {
    text-decoration: none;
    color: #C4677A;
}

A:hover {
    text-decoration: underline;
    color: #946352;
}

A:active {
    text-decoration: underline;
    color: #946352;
}

.contactsPanels {
    margin-left: 20px;
    margin-bottom: 40px;
}

.flag {
    height: 20px;
    margin-left: 10px;
}

.counter {
    margin-left: auto;
    margin-right: 35px;
    text-align: right;
}

.centeredText {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
}


/* Container for text + image */
.intro-container {
    display: flex;
    flex-direction: row;
    /* image left, text right */
    gap: 2vw;
    margin: 2vw;
    padding: 0 2vw;
    box-sizing: border-box;
    align-items: flex-start;
}

/* Text section */
.intro-text {
    flex: 1 1 65%;
    padding: 1vw;
}

/* Image section */
.intro-image {
    flex: 0 0 35%;
    /* image takes up ~45% of container */
    text-align: center;
}

.intro-image img {
    width: 100%;
    /* fills container width */
    height: auto;
    /* keeps proportions */
    border-radius: 0.5vw;
    display: block;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
        margin: 4vw;
        padding: 0 4vw;
    }

    .intro-text {
        text-align: center;
        flex: 1 1 100%;
    }

    .intro-image {
        flex: 1 1 100%;
    }

    .intro-image img {
        max-width: 80vw;
    }
}