body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
	background-color : #6f55b9;
}

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/* Ajustement du conteneur de contenu pour empêcher le chevauchement */
.content {
    position: relative; 
    padding: 0; 
    text-align: center;
    color: white;
    min-height: calc(100% - 60px); 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    max-width: 40%;
    height: auto;
    margin: 0 auto; /* Centre le logo */
}

/* Styles pour la tagline - plus grande et sans fond */
.tagline {
    margin: 25px auto;
    max-width: 700px;
}

.tagline p {
    margin: 0;
    font-size: 1.8em;
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Box unifiée pour construction et contact */
.info-box {
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.construction-text h1 {
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 2.2em;
    color: white;
}

.construction-text p {
    margin: 0;
    font-size: 1.1em;
    color: #e0e0e0;
    font-style: italic;
}

/* Styles pour la section de contact */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-label {
    font-weight: 600;
    color: white;
    font-size: 0.95em;
}

.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.contact-link:hover {
    color: white;
    text-decoration: underline;
}

h1 {
    font-weight: 400;
    margin: 20px 0;
}

a {
	color: grey;
}

/* Footer fixé en bas */
.footer {
    position: fixed; 
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: grey;
    background: white; 
}

hr {
    margin: 0 auto;
    width: 80%;
    border-color: white; /* S'assurer que le filet est visible */
}
