* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}
header {
	margin : 30px 0;
	text-align:center;
	 justify-content: center;
	 display: flex;
	 align-items:center;
	 flex-direction:column;
}

header h1 {
	    font-size: 20px;
    margin: 10px;
}
header p {
	font-size: 16px;
}

/* Logo SVG */
.logo-container {
    max-width: 250px; /* Taille max */
    width: 80%;
    display: flex;
    justify-content: center;
}

.logo {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
        max-width: 200px; /* Réduit le logo sur mobile */
    }
}

footer {
	margin : 30px 0;
	text-align:center;
}
/* Colonne Gauche */
#gauche {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    padding: 20px;
    width: 70vw;
}

#gauche video {
    max-width: 480px;
    max-height: 480px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Colonne Droite */
#droite {
    background: darkgreen;
	background: url('img/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    width: 30vw;
     padding: 30px 15px;

}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    transition: 0.3s;
    width: 220px;
    margin: auto;
}

.social-links i {
    margin-right: 10px;
}

/* Couleurs officielles */
.instagram {
    background: #E4405F;
}

.facebook {
    background: #1877F2;
}

.linkedin {
    background: #0077B5;
}

.whatsapp {
    background: #25D366;
}

/* Effets au survol */
.instagram:hover {
    background: #c13584;
}

.facebook:hover {
    background: #166fe5;
}

.linkedin:hover {
    background: #005582;
}

.whatsapp:hover {
    background: #1da851;
}





/* Responsive - Passage en colonne */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    #gauche, #droite {
        flex: none;
        width: 100vw;
        height: 50vh;
    }
	
	#droite {
 
        height: auto;
		min-height:50vh;
    }
}