body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
    color: #333;
}



header {
    position: fixed;     
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #004080;
}

.nav-bar {
    display: flex;       
    align-items: center;
    padding: 5px 20px;
    position: relative;   
}


.nav-bar .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-bar .logo img {
    width: 80px;
    height: auto;
}

.nav-bar ul {
    display: flex;        
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 120px;   
    flex: 1;
}

.nav-bar ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-bar ul li a:hover {
    background-color: #cc00cc;
    transform: scale(1.05);
}


main {
    margin-top: 120px;
}



h1 {
    color: #004080;
    margin-top: 20px;
}

h2 {
    color: #ff00aa;
    margin-top: 20px;
}



.image-principale,
.logement-img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* =========================
   IMAGE DANS LE TEXTE (FLOAT)
========================= */

.photo {
    width: 200px;
    height: auto;
    margin: 10px 20px 10px 0;
    float: left;          
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


main::after {
    content: "";
    display: table;
    clear: both;
}



.galerie {
    display: flex;        
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.galerie img {
    width: 150px;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.galerie img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

th, td {
    border: 1px solid #004080;
    padding: 12px;
}

th {
    background-color: #004080;
    color: white;
}


ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}



.points-forts {
    background-color: #fff0fa;
    border-left: 5px solid #ff00aa;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
}


.btn {
    display: inline-block;
    background: linear-gradient(135deg, #004080, #ff00aa);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    margin-top: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}


.environment-grid {
    display: flex; 
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.environment-grid img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}



footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 12px 0;
    margin-top: 40px;
    font-size: 14px;
}


a {
    color: #004080;
}

a:hover {
    color: #ff00aa;
}