/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: url(ATL2.jpg) no-repeat center/cover;
}

/* Header / titre */
header {
    padding: 0px;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #f09433;
    text-transform: uppercase;
    letter-spacing: 4px;
    background-color: darkorchid;
}

/* Section intro */
.intro {
    padding: 0px;
    text-align: center;
    font-size: 1.2rem;
    color: darkorchid;
    background-color: #f09433;
}

/* Main collé en bas */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

.main-text {
    text-align: left;
    background-color: rgba(0, 0, 0, 0.1);
    /* semi-transparent juste derrière le texte */
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
}

/* Images et médias */
.main-text img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

/* Liens sociaux */
.social-links {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
}

.fb {
    background-color: #1877F2;
}

.insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .intro {
        font-size: 1rem;
    }

    .main-text {
        padding: 15px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }
}