/* =====================================================
   CSS PROFESSIONNEL - LA BICYCLETTE VERTE 
   Design moderne inspiré de sites haut de gamme
   ===================================================== */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #374151;
    background-color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Utilitaires */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #065f46;
    text-decoration: none;
}

.logo svg {
    color: #059669;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-menu a:hover {
    color: #065f46;
}

.nav-cta {
    background: #065f46 !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #047857 !important;
    transform: translateY(-1px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
    margin-bottom: 64px;
}

.hero-badge {
    display: inline-block;
    background: rgba(6, 95, 70, 0.1);
    color: #065f46;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.025em;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #065f46;
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 95, 70, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    padding: 16px 32px;
    border: 1px solid #d1d5db;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    border-color: #065f46;
    color: #065f46;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #065f46;
    padding: 12px 24px;
    border: 1px solid #065f46;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #065f46;
    color: white;
    transform: translateY(-1px);
}

.hero-image {
    margin-top: 64px;
}

.hero-placeholder {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   SECTIONS COMMUNES
   ===================================================== */

.section {
    padding: 120px 0;
}

.section-light {
    background: #f9fafb;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
}

/* =====================================================
   SECTION CHAMBRE
   ===================================================== */

.room-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.room-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-main-image {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
}

.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.thumbnail {
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 18px;
    color: #111827;
    font-weight: 600;
}

.room-amenities h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: #374151;
    font-size: 15px;
}

.amenity svg {
    color: #059669;
    flex-shrink: 0;
}

.room-highlight {
    padding: 32px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
    border: 1px solid #a7f3d0;
}

.room-highlight h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #065f46;
    margin-bottom: 12px;
    font-weight: 600;
}

.room-highlight p {
    color: #047857;
    line-height: 1.6;
}

/* =====================================================
   SECTION RÉGION
   ===================================================== */

.region-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.region-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.region-content > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.region-description {
    margin-bottom: 40px;
}

.region-description p {
    color: #374151;
    line-height: 1.7;
    font-size: 16px;
}

.region-distances {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.distance-item {
    text-align: center;
    padding: 24px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 120px;
}

.distance-time {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 4px;
}

.distance-place {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.region-map {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   SECTION EXPÉRIENCES
   ===================================================== */

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.experience-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-card.featured {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border-color: #a7f3d0;
}

.experience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.experience-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
}

.experience-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail {
    font-size: 14px;
    color: #059669;
    font-weight: 500;
    position: relative;
    padding-left: 16px;
}

.detail::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #059669;
}

/* =====================================================
   SECTION TARIFS
   ===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border-color: #a7f3d0;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 8px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-header p {
    color: #6b7280;
    font-size: 15px;
}

.pricing-amount {
    margin-bottom: 32px;
    text-align: center;
    padding: 24px 0;
    border-bottom: 1px solid #f3f4f6;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #065f46;
    line-height: 1;
}

.period {
    display: block;
    font-size: 16px;
    color: #9ca3af;
    margin-top: 8px;
    font-weight: 500;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.feature svg {
    color: #059669;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-notes {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.note {
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* =====================================================
   SECTION CONTACT
   ===================================================== */

.contact-section {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-content a,
.method-content span {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.method-content a:hover {
    color: #a7f3d0;
}

.contact-availability h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-availability p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a7f3d0;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #047857;
    color: white;
}

.form-checkbox {
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #a7f3d0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.8);
}

.full-width {
    width: 100%;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: #a7f3d0;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #a7f3d0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #a7f3d0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #a7f3d0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .room-showcase,
    .region-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .region-distances {
        justify-content: center;
        gap: 16px;
    }
    
    .distance-item {
        min-width: 100px;
        padding: 20px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .section-intro {
        margin-bottom: 48px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .experience-card,
    .pricing-card {
        padding: 24px 20px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* =====================================================
   ANIMATIONS ET INTERACTIONS
   ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-location {
    animation-delay: 0.4s;
}

.hero-actions {
    animation-delay: 0.5s;
}

/* Effets de parallaxe léger */
@media (prefers-reduced-motion: no-preference) {
    .hero-image {
        transform: translateY(20px);
        animation: floatUp 1s ease-out 0.6s forwards;
    }
}

@keyframes floatUp {
    to {
        transform: translateY(0);
    }
}

/* Focus états pour l'accessibilité */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #a7f3d0;
    outline-offset: 2px;
}

/* Améliorations pour le dark mode */
@media (prefers-color-scheme: dark) {
    .section-light {
        background: #f8fafc;
    }
}