@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

/*-------------------------------------------VANTA--------------------------------------------------------------------*/


#vanta-bg-fog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 1s ease;
}





:root {
    --bg: #E8DCCB;
    --text: #695C5C;
    --accent: #B89C88;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    line-height: 1.6;
    font-size: 1rem;
}

/*-------------------------------------------CONTACT INTRO-----------------------------------------------------------*/
.contact-intro {
    max-width: 900px;
    margin: 8vh auto 4vh;
    padding: 0 2rem;
    text-align: center;
    margin-top: 0;
}

.contact-intro h2 {
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 0 1rem;
    text-align: center;
    color: var(--text);
}

.contact-inline span {
    white-space: nowrap;
}

.contact-inline a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-inline a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .contact-inline {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/*-------------------------------------------HERO PHRASE------------------------------------------------------------*/
.contact-hero {
    text-align: center;
    margin-bottom: 3vh;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text);
    font-style: italic;
    margin-top:0 ;
}

/*-------------------------------------------FORMULAIRE-------------------------------------------------------------*/
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    margin-top:0 ;
    padding-top:0 ;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(105, 92, 92, 0.2);
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    resize: vertical;
    transition: border 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid var(--accent);
    background-color: #fdf8f2;
}

.contact-form button {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: var(--text);
    color: var(--bg);
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--accent);
}

.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}


.btn-download {
    background: none;
    border: 2px solid var(--text);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    padding: 0.5rem 1.2rem;
    font-size: 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;

}



.btn-download:hover{
    background-color: var(--text);
    color: var(--bg);
}



/*-------------------------------------------RESPONSIVE-------------------------------------------------------------*/
@media (max-width: 768px) {
    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-intro p {
        font-size: 1.05rem;
    }

    .contact-form-section h1 {
        font-size: 1.6rem;
    }
}



.svg-container {
    width: 60vh;
    height: 0vh;
    margin: 0 auto;
}

.espace{
    height: 10vh;
}



