@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Poppins:wght@400;600;700&display=swap');

:root 
{
    /*Charte Graphique*/
    --color-black: black;
    --color-white: white;
}
        
*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body 
{
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
}

/*Navbar*/
.container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    bottom: 95px;
}

.logo img 
{
    width: 300px;
}

nav ul 
{
    display: flex;
    list-style: none;
}

nav ul li 
{
    margin-left: 30px;
}

nav ul li a 
{
    text-decoration: none;
    color: #777;
    font-size: 14px;
    transition: all 0.3s ease;
}

nav ul li a:hover 
{
    color: #333;
    transform: scale(1.05);   
}

nav ul li a#here
{
    border-bottom: 2px solid black;
    color: black;
}

nav ul li a#here:hover
{
    color: #777;
}

.main-container 
{
    background: var(--color-white);
    padding: 30px;
    color: var(--color-black);

}

.section-title 
{
    position: absolute;
    justify-content: center;
    text-align: center;
    top: 200px;
    left: 600px;
}

.section-title h1 
{
    font-family: 'Dancing Script', cursive;
    font-size: 70px;
    display: inline-block;
    padding: 20px;
    justify-content: center;
}

.section-title h1::before,
.section-title h1::after 
{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
}

.section-title h1::before 
{
    border-bottom: 5px solid var(--color-black);
    border-left: 5px solid var(--color-black);
    bottom: 0;
    left: 0;
}

.section-title h1::after 
{
    border-top: 5px solid var(--color-black);
    border-right: 5px solid var(--color-black) ;
    top: 0;
    right: 0;
}
.container 
{
    background-color: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 30px;
    width: 400px;
    margin-top: 80px;
}

.form-group 
{
    margin-bottom: 20px;
}

label 
{
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

input[type="email"],
input[type="text"],
textarea
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-footer 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}



.btn-send
{
    display: block;
    width: 100%;
    background-color:var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition : transform 0.3s ease;
}

.btn-send:hover
 {
    transform: scale(1.05);
}

.btn-back
{
    background-color: var(--color-black);
    color: var(--color-white);
    list-style: none;
    position: absolute;
    border-radius: 20px;
    padding: 10px 20px;
    transition: transform 0.3s ease;
    margin-top: 50px;
    margin-left: 70px;
}

.btn-back:hover
{
    transform: scale(1.05);
}

.register-link
 {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.register-link a 
{
    color: #1e88e5;
    text-decoration: none;
}

.register-link a:hover
 {
    text-decoration: underline;
}


/*Footer*/
footer
{  
    background-color: var(--color-white);
    border-top: 1px solid var(--color-black);
    margin-top: 80px;
    padding: 40px 0px;
}

.footer-container
{
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.footer-section h3
{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-black);
}

.footer-section p
{
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-section ul
{
    list-style: none;
}

.footer-section ul li
{
    margin-bottom: 10px;
}

.footer-section ul li a
{
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover
{
    color: #007BFF;
}

.logos-sociaux 
{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    right: 50px;
    top: 10px;
    transition: all 0.3s ease;
}

.logos-sociaux a 
{
    color: black;
    font-size: 25px;
    transition: all 0.3s ease;
}

.logos-sociaux a:hover 
{
    color: #007BFF;
}   

.copyright
{
    text-align: center;
    font-size: 12px;
    color: var(--color-black);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-black);
}
