/* Style de base pour tout l'affichage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    background:url('img/header-bg.svg') no-repeat bottom;
    background-size: cover;
    color: black;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin: 0;
}

h2 {
    font-size: 16px;
}

.logo {
    height:500px;
}

.mainmenu{
    display:flex;
}

.search {
    height:auto;
    width: auto;
    color:#fff;
    padding:20%;
    border:solid black 1px;
    border-radius:50px;
}

.villes {
    display:inline-block;
    
    
}
input {
border: none;
outline: none;
width:100%;
}

/* Section de l'image */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}

/* Image responsive */
.image-section img {
    width: 100%;
    height: auto;
    max-width: 600px; /* Limite la taille sur les écrans plus grands */
    border-radius: 8px;
}

/* Media queries pour écrans de taille moyenne (tablettes) */
@media (min-width: 768px) {
    header {
        padding: 30px;
    }

    h1 {
        font-size: 28px;
    }

    .image-section {
        padding: 30px;
    }
}

/* Media queries pour écrans plus larges (ordinateurs) */
@media (min-width: 1024px) {
    header {
        padding: 40px;
    }

    h1 {
        font-size: 32px;
    }

    .image-section {
        padding: 40px;
    }
}
