header {
    background: url('header-bg.jpg') no-repeat center center;
    background-size: 100% auto;
    background-color: rgba(0, 0, 0, 0.399);
    color: white;
    text-align: center;
    padding: 200px 80px;
    padding-left: 120px;
    position: relative;

}

header p {
    margin-top: 10px;
    font-size: 2.2rem;
    text-align: center;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 125px;
    height: auto;
}

.destinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: white;
}

.destination {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 280px;
    padding: 20px;
}

.destination img {
    width: 80px;
    margin: 10px 0;
}

.destination h2 {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 10px;
}

.destination p {
    font-size: 0.95rem;
    color: #666;
    margin: 10px 0 20px;
}

.destination button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.destination button:hover {
    background: #e55a00;
}

.about {
    text-align: center;
    background: url('about.jpg');
    width: 1100px; 
    border-radius: 10px;
    color: white;
    display: block; 
    margin: 0 auto; 
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about p {
    font-size: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.about .footer{
    margin: 40px;
    
}

footer {
    position: relative;
    background: url('about.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 15px 10px
    font-size: 0.9rem;

}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.399);
    z-index: 1;
    pointer-events: none;
  }
  
  footer * {
    position: relative;
    z-index: 2;
  }
  
    .liste-2-colonnes {
        display: flex;
        gap: 20px;
        justify-content: center;
        padding: 20px 0;
       
    }
  
    .colonne {
        flex: 1;
        list-style-type: none;
        padding: 0;
    }
  
    .colonne li {
        margin: 5px 0;
    }
  