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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background: linear-gradient(135deg, #F4EDE4 0%, #E8D5C4 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Formes organiques d'arrière-plan */
.organic-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(199, 127, 87, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(-10px) rotate(-3deg) scale(0.95); }
    75% { transform: translateY(-15px) rotate(2deg) scale(1.02); }
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C77F57, #A66846);
    border-radius: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #8F5A36;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3rem;
    color: #A66846;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    margin: 80px 0;
    position: relative;
}

.section-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 120px 0;
}

.section-content {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(199, 127, 87, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199, 127, 87, 0.2);
}

.section-image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section-image:hover img {
    transform: scale(1.1);
}

.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(199, 127, 87, 0.3) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-image:hover::before {
    opacity: 1;
}

h2 {
    font-size: 2.5rem;
    color: #8F5A36;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5D3E2A;
}

.text-content p {
    margin-bottom: 20px;
}

/* Style spécial pour les liens */
.travel-link {
    color: #C77F57;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.travel-link:hover {
    color: #8F5A36;
}

.travel-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C77F57, #A66846);
    transition: width 0.3s ease;
}

.travel-link:hover::after {
    width: 100%;
}

/* Section héros avec forme ondulée */
.hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(199, 127, 87, 0.1) 0%, rgba(166, 104, 70, 0.1) 100%);
    border-radius: 50px;
    margin: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,20 Q25,0 50,20 T100,20 L100,100 L0,100 Z" fill="rgba(199,127,87,0.05)"/></svg>') repeat-x;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .section-asymmetric {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-content {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-content {
        border-radius: 20px;
        padding: 25px 15px;
    }
    
    .section-image {
        border-radius: 20px;
    }
    
    .hero-section {
        border-radius: 30px;
    }
}