/* Base */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0d6efd;
}
.nav-link {
    font-weight: 500;
    color: #555;
}
.nav-link:hover {
    color: #0d6efd;
}
.navbar .btn-outline-primary {
    transition: all 0.3s ease-in-out;
}
.navbar .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Hero */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 85vh;
}
.hero-section .text-center {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
}

/* Barre de recherche */
section form input,
section form button {
    border-radius: 30px !important;
}
section form input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Cartes logements */
.card {
    border: none;
    transition: transform 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
}
.card-title {
    font-size: 1rem;
    font-weight: 600;
}
.card-text {
    font-size: 0.9rem;
}

/* Expériences */
.card-img-overlay {
    border-radius: 0.5rem;
}
.card-img {
    border-radius: 0.5rem;
    object-fit: cover;
    height: 300px;
}

/* Avis */
section .border {
    border-left: 4px solid #0d6efd;
}

/* Footer */
footer {
    font-size: 0.9rem;
}
footer a {
    color: #0d6efd;
}
footer a:hover {
    text-decoration: underline;
}
.custom-scroll {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.custom-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

