@font-face {
    font-family: 'bould bold';
    src: url('../assets/fonts/Bould-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bould regular';
    src: url('../assets/fonts/bould-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins regular';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



h1{
    font-family: 'bould bold';
    font-size: 3.5rem !important;

}

p{
    font-family: 'poppins regular';
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3399ff;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1000;
}

.notch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    height: 60px;
    background-color: #3399ff;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notch img {
    height: 35px;
    width: auto;
    cursor: pointer;
}



footer {
    background-color: #0096ff;
    color: white;
    position: relative;
    padding-top: 30px;
    font-family: 'poppins regular';
}

.notch-bottom {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    height: 60px;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    z-index: 10;
}

.footer-container {
max-width: 1100px;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 30px 20px; /* Un peu de padding */
text-align: center;
}

.footer-left, .footer-center, .footer-right {
flex: 1 1 300px; /* Chaque bloc prend minimum 300px et s'adapte */
margin: 10px 0;
}

.footer-center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.footer-right {
display: flex;
justify-content: center;
gap: 15px;
}


.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.logo-img {
    height: 80px;
    margin-top: 15px;
}

address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}



.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    justify-content: center;
}



.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        margin: 0;
    }

    
    .footer-center, .footer-left, .footer-right{
        flex: 1 1 0px;
    }

  

    .footer-container {
flex-direction: column;
align-items: center;
}

.footer-left, .footer-center, .footer-right {
text-align: center;
}
}