:root {
    --primary-color: #4a90e2;
    --secondary-color: #2d4263;
    --accent-color: #ff6b6b;
    --accent-hover: #ff8787;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --background-dark: #1a1f2b;
    --card-bg: rgba(45, 66, 99, 0.15);
    --hover-color: #3d5a8f;
    --gradient-start: #4a90e2;
    --gradient-end: #2d4263;
}

body {
    background: var(--background-dark);
    color: var(--text-color);
    min-height: 100vh;
}

#main {
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Pêche-à-la-Mouche.webp');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Content Sections */
.content-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 0;
    overflow: hidden;
}

.content-section .image {
    flex: 1;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.content-section .content {
    flex: 1;
    padding: 4rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin: 2rem;
    border-radius: 15px;
}

.content-section .content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section .content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.content-section .content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.content-section .content ul li {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.content-section .content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.content-section .content .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.content-section .content .button:hover {
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    margin: 4rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Style pour le dernier conteneur de tarifs */
.content-section:last-of-type {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    min-height: auto;
}

.content-section:last-of-type .content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-section:last-of-type .content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.content-section:last-of-type .content ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.content-section:last-of-type .content p {
    text-align: center;
    margin: 0.5rem 0;
}

/* Media Queries */
@media (max-width: 980px) {
    .content-section {
        flex-direction: column !important;
        padding: 2rem 0;
    }

    .content-section .image {
        width: 100%;
        min-height: 300px;
    }

    .content-section .content {
        margin: 1rem;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
} 