@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #f8f7f4;
}

/* Navigation médiévale moderne */
nav {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #8b7355;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

nav h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

/* Hero section split avec photo et vidéo */
.hero {
    background: linear-gradient(
        135deg, 
        rgba(44, 44, 44, 0.85) 0%, 
        rgba(74, 74, 74, 0.85) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%23f0ede6"/><rect x="0" y="0" width="300" height="200" fill="%23e6dcc9" stroke="%23d4c4a8" stroke-width="1"/><rect x="300" y="0" width="280" height="200" fill="%23ebe1ce" stroke="%23d4c4a8" stroke-width="1"/><rect x="580" y="0" width="320" height="200" fill="%23e8ddc6" stroke="%23d4c4a8" stroke-width="1"/><rect x="900" y="0" width="300" height="200" fill="%23ede2cf" stroke="%23d4c4a8" stroke-width="1"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    position: relative;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 115, 85, 0.1) 0%,
        rgba(101, 67, 33, 0.05) 100%
    );
    z-index: 1;
}

.hero-split {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.hero-image {
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #8b7355;
    height: 250px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder si pas d'image */
.hero-image:empty::before {
    content: 'Photo de la maison';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8b7355;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.7;
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 0;
}

.hero-video {
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #8b7355;
    height: 400px;
    position: relative;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .hero-video {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-image {
        height: 180px;
    }
    
    .hero-video {
        height: 200px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section description */
.description {
    padding: 6rem 0;
    background: #ffffff;
}

.description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.description p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Features grid propre */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #8b7355;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.feature ul {
    list-style: none;
}

.feature li {
    padding: 0.6rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.feature li:last-child {
    border-bottom: none;
}

.feature li::before {
    content: '•';
    color: #8b7355;
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* Section vidéo */
.video-presentation {
    padding: 6rem 0;
    background: #f8f7f4;
    border-top: 1px solid #e0e0e0;
}

.video-presentation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.video-presentation p {
    font-size: 1.1rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #8b7355;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 4px;
}

/* Responsive pour la vidéo */
@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
}
