/* style-voyage.css */

/* Police Google Font inspirée du voyage */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    backdrop-filter: brightness(0.8);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffda6a;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

p {
    font-size: 1.3rem;
    margin: 0.8rem auto;
    max-width: 700px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Liste des infos pratiques */
ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

ul li {
    background-color: #0000003f;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Texte en gras */
strong {
    color: #e781c2;
}

.video-insta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Instagram embed fix */
.instagram-media {
    width: 100% !important;
    max-width: 540px !important;
    margin: auto;
}

/* Ajout d’une ambiance carte postale */
body::after {
    content: "✈️ Bon voyage !";
    position: fixed;
    bottom: 10px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    color: #4e342e;
    font-weight: bold;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
