Style.CSS

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
b {
    text-align: center;
    color: #e67e22;
}
header{
    background-color:#777;
    padding: 20px;
    position: sticky;
    z-index: 100;
}
nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    border-radius: 30px;
    background-color:whitesmoke;
}
nav ul li a:hover{
    border-radius: 20px;
    background-color:#0077cc;
    color: whitesmoke;
}
nav ul li a{
    background-color: whitesmoke;
    border-radius: 10px;
}


/* Corps de la page */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    color: #333;
    padding: 20px;
}

/* Titres principaux */
h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #0077cc;
}

/* Sections */
section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Titres de section */
section h2 {
    color: #005fa3;
    margin-bottom: 15px;
}

/* Titres des offres */
section h3 {
    color: #333;
    margin-top: 15px;
}

/* Texte important */
strong {
    color: #e67e22;
}

/* Liens (si tu ajoutes) */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer si besoin */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color:#777;
}



/* destination */
.destination-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fafafa;
    transition: transform 0.3s;
}
.destination-card:hover {
    transform: scale(1.02);
}
.destination-card img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-right: 1px solid #ccc;
}
.destination-info {
    padding: 10px;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form button {
    margin-top: 20px;
    background-color: #0077cc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #005fa3;
}

.success-message {
    text-align: center;
    background-color: #dff0d8;
    color: #3c763d;
    padding: 10px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
}

/*Special offer */
.special-offer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    background-color: #fff7e6;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.offer-image {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 15px;
    object-fit: cover;
}
.offer-details {
    flex: 2;
}
.offer-details ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* About */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.about-image {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.about-text {
    flex: 2;
    font-size: 1rem;
}

.about-text h2 {
    color: #0077cc;
    margin-top: 20px;
}

.about-text ul {
    margin-top: 10px;
    padding-left: 20px;
}