/* ==========================================
   STYLES MODERNES POUR BRETAGNE-CAMPING.FR
   Design épuré sur fond blanc
   ========================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #e74c3c;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.logo-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo .site-name {
    color: #2c3e50 !important;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    display: block !important;
}

.logo-subtitle {
    color: #e74c3c !important;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-menu li a {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #fef5f1;
    color: #e74c3c;
}

.nav-menu li a.active {
    background-color: #e74c3c;
    color: #ffffff;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.5;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #e74c3c;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #495057;
    text-align: justify;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

/* ==========================================
   NAVIGATION CARDS
   ========================================== */

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

.page-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.page-card h3 {
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
    font-size: 1.3rem;
}

.page-card h3 a {
    color: #2c3e50;
    font-weight: 600;
}

.page-card h3 a:hover {
    color: #e74c3c;
}

.page-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.6;
}

/* ==========================================
   INTRO SECTIONS
   ========================================== */

.intro {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
    margin-bottom: 50px;
}

.intro h2 {
    border-bottom: none;
    display: block;
    margin-bottom: 25px;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px 30px;
    margin-top: 80px;
    border-top: 4px solid #e74c3c;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    text-align: left;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #e74c3c !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

.footer-section p a,
.footer-section a {
    color: #e74c3c !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-section p a:hover,
.footer-section a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .logo .site-name {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 2.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        text-align: center;
        padding: 12px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    main {
        padding: 40px 20px;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
        text-align: left;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .page-card {
        padding: 25px;
    }
    
    .intro {
        padding: 30px 20px;
    }
    
    footer {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */

.text-center {
    text-align: center;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    header, footer, .nav-menu, .pages-grid {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    main {
        max-width: 100%;
        padding: 0;
    }
}