/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FEFAF5;
    color: #2A2A2A;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 42px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: #2A2A2A;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #B56A2C;
}

.btn-reserver {
    background: #B56A2C;
    color: white !important;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-reserver:hover {
    background: #8B4E1E;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #2A2A2A;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg video,
.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.btn-primary {
    background: #B56A2C;
    color: white;
    border: 1px solid #B56A2C;
}

.btn-primary:hover {
    background: #8B4E1E;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #B56A2C;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%,100%{ transform: translateX(-50%) translateY(0); }
    50%{ transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections générales */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B56A2C;
    display: inline-block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1A2F1D;
}

.section-header p {
    font-size: 1.1rem;
    color: #5A5A5A;
    max-width: 600px;
    margin: 0 auto;
}

/* Grilles */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Cartes */
.card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -15px rgba(0,0,0,0.2);
}

.card-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 28px;
}

.card-info h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: #B56A2C;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #B56A2C;
}

.exp-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
}

.exp-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px rgba(0,0,0,0.08);
}

.exp-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.exp-meta {
    margin-top: 20px;
    color: #B56A2C;
    font-weight: 500;
}

/* Témoignages */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.testimonial {
    flex: 0 0 400px;
    background: white;
    padding: 32px;
    border-radius: 32px;
    font-style: italic;
}

.author {
    margin-top: 20px;
    font-weight: 600;
    color: #B56A2C;
}

/* Newsletter */
.newsletter {
    background: #1A2F1D;
    color: white;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
}

/* Footer */
.footer {
    background: #0F1A0E;
    color: #ccc;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.socials a {
    margin-right: 20px;
    text-decoration: none;
    color: #ccc;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #ccc;
}

.footer-links a:hover {
    color: #B56A2C;
}

/* Page hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero.small {
    height: 40vh;
    min-height: 280px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

/* Formulaires */
.luxe-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
}

.luxe-form input,
.luxe-form select,
.luxe-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E0D6CC;
    border-radius: 30px;
    font-family: inherit;
    transition: 0.2s;
}
 
.luxe-form input:focus,
.luxe-form select:focus,
.luxe-form textarea:focus {
    outline: none;
    border-color: #B56A2C;
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 24px;
    }
    .luxe-form {
        padding: 30px;
    }
}