@charset "UTF-8";
/* CSS Document */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-container {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
	padding-left: 20%;
	padding-right: 20%;
    font-size: 1.2em;
    margin-bottom: 30px;
}

ul {
	text-align: justify;
}

.NotaBene{
	padding-left: 5%;
	padding-right: 5%;
    font-size: 0.8em;
    margin-bottom: 10px;
	text-align: justify;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}


/* Styles pour le formulaire */
form {
    text-align: left;
    margin-top: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-column {
    flex: 0 0 48%;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"] {
    width: calc(100% - 10px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
	align-self: center;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}


/* Styles pour le pop-up */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 1s;  /* Durée de la transition augmentée à 0.6s */
}

.popup.show {
    display: block;
    opacity: 1;
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /*max-width: 600px;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transform: translateY(-50px);
    transition: transform 1s;  /* Durée de la transition augmentée à 0.6s */
}

.popup.show .popup-content {
    transform: translateY(0);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}





/* Style pour les eMails du bas */


.email-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.email-grid a {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.email-grid a:hover {
    background-color: #e0e0e0;
}


@media (max-width: 768px) {
    .splash-container {
        padding: 30px;
    }

    .logo {
        width: 120px;
    }

    h1 {
        font-size: 2em;
    }

    p {
		padding-left: 0%;
		padding-right: 0%;
        font-size: 1em;
    }
	
	.email-grid {
        grid-template-columns: 1fr;
	}
}
