/* Styles des boutons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-custom {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-custom:hover {
    background: #fff;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-custom--primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-custom--primary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 12px 32px;
    font-size: 0.9rem;
}

/* Style spécial pour les boutons sur fond sombre */
.hero .btn-custom,
.destination-card .btn-custom {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.hero .btn-custom:hover,
.destination-card .btn-custom:hover {
    background: #fff;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Style pour les boutons dans les cartes */
.destination-card .btn-custom {
    margin-top: 1rem;
    display: inline-block;
}
