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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5530;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5530;
}

.hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228B22" width="1200" height="600"/><circle fill="%2332CD32" cx="200" cy="150" r="50" opacity="0.3"/><circle fill="%2332CD32" cx="800" cy="300" r="80" opacity="0.2"/><circle fill="%2332CD32" cx="1000" cy="100" r="40" opacity="0.4"/></svg>');
    color: white;
    text-align: center;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destinations {
    padding: 5rem 0;
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card-content {
    padding: 1.5rem;
}

.newsletter {
    background: #2c5530;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Styles pour les articles de blog */
.article-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid #eee;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-intro {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.article-content {
    padding: 2rem;
    line-height: 1.8;
}

.article-content h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    border-left: 4px solid #ff6b35;
    padding-left: 1rem;
}

.article-content h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
}

.article-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.budget-table {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.budget-table h4 {
    background: #2c5530;
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.budget-content {
    padding: 1.5rem;
}

.checklist {
    background: #e8f5e8;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.checklist h4 {
    color: #2c5530;
    margin-top: 0;
}

.checklist ul {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
}

.checklist li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.error-list {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.error-list ul {
    list-style: none;
    margin-left: 0;
}

.error-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.error-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.article-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    margin-top: 0;
    color: white;
}

.article-tags {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    border-radius: 15px;
    font-size: 0.85rem;
    text-decoration: none;
}

.tag:hover {
    background: #dee2e6;
}

.reading-time {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    display: inline-block;
}

.brand-mention {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.price-range {
    font-weight: bold;
    color: #2c5530;
}

.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}

.warning::before {
    content: "⚠️ ";
    font-weight: bold;
}

/* Styles pour la page d'index des guides */
.guides-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.guides-header {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.guides-title {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.guides-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 4rem;
}

.category-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-description {
    opacity: 0.9;
    font-size: 1.1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.article-card-content {
    padding: 1.5rem;
}

.article-card-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.article-card-title {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-card-title a {
    text-decoration: none;
    color: inherit;
}

.article-card-title a:hover {
    color: #ff6b35;
}

.article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.difficulty-badge {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.difficulty-debutant {
    background: #28a745;
}

.difficulty-intermediaire {
    background: #ffc107;
    color: #333;
}

.difficulty-expert {
    background: #dc3545;
}

.search-bar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-color: #2c5530;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .article-container {
        margin: 1rem;
        border-radius: 0;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .guides-title {
        font-size: 2.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}