:root {
    --primary-blue: #0089a7;
    --dark-blue: #001a2c;
    --text-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
}

/* Animation fluide pour tous les boutons */
.btn-primary, .btn-secondary, .btn-reserve, .btn-outline, .nav-links a {
    transition: all 0.3s ease-in-out;
}

/* Bouton bleu (RÉSERVER) */
.btn-primary:hover, .btn-reserve:hover {
    background-color: #00a8cc; /* Un bleu plus clair au survol */
    transform: translateY(-3px); /* Petit saut vers le haut */
    box-shadow: 0 5px 15px rgba(0, 137, 167, 0.4);
}

/* Bouton transparent (DÉCOUVRIR NOS ACTIVITÉS) */
.btn-secondary:hover {
    background-color: white;
    color: var(--dark-blue);
    transform: scale(1.05);
}

/* Bouton contour (DÉCOUVRIR dans les cartes) */
.btn-outline:hover {
    background-color: white;
    color: black;
    border-color: white;
}

/* Liens de navigation */
.nav-links a:hover {
    color: #40e0d0;
}

/* Effet sur les cartes (Zoom sur l'image de fond) */
.card {
    transition: transform 0.4s ease;
    cursor: pointer;
}
.card:hover {
    transform: scale(1.02);
}
/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('fond-plongee.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

.btn-reserve {
    background: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.hero-content {
    margin: auto 50px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.highlight {
    color: #40e0d0; /* Couleur turquoise style pinceau */
    font-style: italic;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: var(--primary-blue);
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid white;
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
}

/* Wave effect */
.wave-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px;
    background: white;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.8rem;
}

.feature-item h3 {
    margin: 0;
    font-size: 0.9rem;
}

/* Cards Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 20px 50px 20px;
    gap: 15px;
}

.card {
    height: 350px;
    border-radius: 10px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    width: 100%;
}

.btn-outline {
    border: 1px solid white;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 20px;
}
/* Style du Footer */
.site-footer {
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 60px 50px 30px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a0aec0; /* Gris clair pour le texte secondaire */
}

.site-footer h4 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.handwritten {
    font-family: 'Brush Script MT', cursive; /* Ou une police manuscrite Google Fonts */
    color: #40e0d0;
    font-size: 1.4rem;
    margin: 10px 0;
}

.map-container img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #2d3748;
}

/* Responsivité pour mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons-footer {
        justify-content: center;
    }
    /* Animation fluide pour tous les boutons */
.btn-primary, .btn-secondary, .btn-reserve, .btn-outline, .nav-links a {
    transition: all 0.3s ease-in-out;
}   
}