/* Base du site */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'League Spartan', sans-serif;
}

/* Container principal avec image de fond */
.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #FEFAE0 url('Images/Background.jpg') no-repeat center center;
    background-size: cover;
}

/* Contenu centré verticalement et horizontalement */
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px; /* espace entre logo et titre seulement */
    padding: 2rem;
}

/* Logo SVG */
.svg-logo {
    width: 450px;       /* largeur desktop */
    max-width: 450px;
    height: auto;
    display: block;
    margin: 5rem auto auto auto; /* top 4rem, bottom 2rem, centré horizontalement */
}

/* Textes */
.titre {
    font-size: 35px;
    font-weight: 500;
    color: #FEFAE0;
    margin-bottom: 120px; /* espace vers le texte suivant */
}

.intro {
    font-size: 30px;
    font-weight: 400;
    color: #FEFAE0;
    margin-bottom: 10px;
}

.adresse {
    font-size: 30px;
    font-weight: 500;
    color: #FEFAE0;
    margin-bottom: 150px;
}

.description {
    font-size: 25px;
    font-weight: 400;
    color: #FEFAE0;
    margin-bottom: 5rem;
}

/* Responsive pour tablettes et smartphones */
@media (max-width: 768px) {
    .svg-logo {
        width: 70%;
        max-width: 300px;
    }
    .titre {
        font-size: 7vw;
        margin-bottom: 8px;
    }
    .intro {
        font-size: 4vw;
        margin-bottom: 8px;
    }
    .adresse {
        font-size: 3.5vw;
        margin-bottom: 8px;
    }
    .description {
        font-size: 3vw;
    }
}
