/* Empêche le débordement horizontal */
html,
body {
    overflow-x: hidden; }

@font-face {
    font-family: 'Abril Fatface';
    src: url('media/AbrilFatface-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal; }
    
body,
html {
font-family: helvetica, sans-serif;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}

.container {
display: flex;
height: 100vh;
width: 100%;
flex-direction: row;
}

.left-column {
flex: 1;
background-image: url('media/fond.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
position: relative;
display: flex;
flex-direction: column;
}

.text-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-bottom: 2rem;
}
.logo-wrapper {
padding-top: 33px;
text-align: center;
}
.logo {
max-width: 350px;
margin-bottom: 1rem;
}

.text-content h1 {
font-family: 'Abril Fatface', serif;
font-size: 3rem;
line-height: 1.4;
font-weight: bold;
text-align: center;
}

.right-column {
flex: 1;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
text-align: center;
font-size: 2em;
}

.content {
max-width: 400px;
font-family: helvetica, sans-serif;
}

.content p {
font-size: 1rem;
margin-bottom: 1rem;
font-size: 0.6em;
}

.btn {
display: inline-block;
font-family: 'Abril Fatface', serif;
background-color: black;
color: white;
padding: 0.2rem 1.4rem;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s ease;
font-size: 16px;
}

.btn:hover {
background-color: #444;
}

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




.left-column
{
width: 100%;
height: 50vh;
padding: 0px;
}


.right-column {
    width: 90%;
    height: 50vh;
    padding: 0px;   
    padding-left: 5%;
}
.text-content h1 {
font-size: 1.6rem;
font-family: 'Abril Fatface', serif;
}

.logo {
max-width: 100px;
} }



.lead-form {
display: flex;
flex-direction: column;
gap: 1.2rem;
max-width: 420px;
margin: auto;
}

.lead-form .form-title {
font-size: 1rem;
text-align: center;
margin-bottom: 1rem;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
width: 100%;
border: none;
border-bottom: 1px solid #000;
padding: 0.6rem 0;
font-size: 1rem;
outline: none;
}

.checkbox-left {
font-size: 0.85rem;
line-height: 1.4;
display: flex;
align-items: flex-start;
gap: 10px;
text-align: left;
}

.checkbox-left input {
margin-top: 4px;
}

.lead-form a {
color: inherit;
text-decoration: underline;
}

.lead-form .btn {
display: inline-block;
background-color: black;
color: white;
padding: 0.8rem 1.8rem;
border-radius: 25px;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
text-align: center;
border: none;
}

.lead-form .btn:hover {
background-color: #444;
}

.checkbox-left {
display: flex;
align-items: flex-start;
gap: 10px;
text-align: left;
font-size: 0.85rem;
line-height: 1.4;
flex-wrap: wrap;     }

.checkbox-line {
display: flex;
align-items: flex-start;
gap: 10px;
text-align: left;
font-size: 0.9rem;
line-height: 1.4;
}

.checkbox-line input[type="checkbox"] {
margin-top: 3px;
flex-shrink: 0;
}

.checkbox-line span {
display: inline;
}

.checkbox-line a {
text-decoration: underline;
color: inherit;             }