﻿@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Merriweather:wght@300;400;700&family=Poppins:wght@300;400;500;600&display=swap');

:root { 
    --wood-dark: #8B4513; 
    --wood-medium: #A0522D; 
    --wood-light: #CD853F; 
    --earth-dark: #654321; 
    --earth-medium: #8B7355; 
    --earth-light: #D2B48C; 
    --fire-orange: #D2691E; 
    --forest-green: #556B2F; 
    --cream: #F8F6F0; 
    --text-warm: #2C1810; 
    --text-soft: #5D4037; 
    --shadow-warm: rgba(139, 69, 19, 0.1);
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-warm);
    line-height: 1.6;
    background-color: var(--cream);
    margin: 0;
    padding: 0;
}

.font-serif { 
    font-family: 'Merriweather', serif; 
}

.font-display {
    font-family: 'Merriweather', serif;
}

.font-sans {
    font-family: 'Open Sans', sans-serif;
}

.hero-section { 
    height: 100vh; 
    background: linear-gradient(rgba(139, 69, 19, 0.3), rgba(101, 67, 33, 0.4)), url('Photos/vue sud est.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-align: center; 
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title { 
    font-size: 4.5rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6); 
    letter-spacing: 2px;
    font-family: 'Merriweather', serif;
}

.hero-subtitle { 
    font-size: 1.8rem; 
    font-weight: 400; 
    opacity: 0.95; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-padding { 
    padding: 6rem 0; 
}

.section-title { 
    font-size: 3.5rem; 
    font-weight: 700; 
    margin-bottom: 3rem; 
    color: var(--wood-dark); 
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Merriweather', serif;
}

.gallery-img { 
    height: 280px; 
    object-fit: cover; 
    border-radius: 12px; 
    transition: all 0.4s ease; 
    border: 3px solid transparent;
    box-shadow: 0 8px 25px var(--shadow-warm);
}

.gallery-img:hover { 
    transform: scale(1.03) translateY(-5px); 
    border-color: var(--wood-medium);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
}

.main-gallery-img { 
    height: 600px; 
    object-fit: cover; 
    border-radius: 16px; 
    box-shadow: 0 15px 40px var(--shadow-warm);
}

.feature-card { 
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); 
    border-radius: 16px; 
    padding: 2.5rem; 
    box-shadow: 0 10px 30px var(--shadow-warm); 
    transition: all 0.4s ease; 
    border: 2px solid transparent;
    height: 100%; 
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wood-dark), var(--fire-orange));
}

.feature-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15); 
    border-color: var(--wood-light);
}

.feature-icon { 
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, var(--wood-dark), var(--fire-orange)); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 1.5rem; 
    color: white; 
    font-size: 1.8rem; 
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.experience-section { 
    background: linear-gradient(135deg, var(--cream) 0%, #F0E6D2 100%); 
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 L20 10" stroke="%23D2B48C" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>');
    opacity: 0.1;
}

.pricing-card { 
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); 
    border-radius: 20px; 
    padding: 4rem; 
    box-shadow: 0 20px 50px var(--shadow-warm); 
    text-align: center; 
    border: 3px solid var(--wood-light);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--wood-dark), var(--fire-orange), var(--wood-medium));
    border-radius: 20px;
    z-index: -1;
}

.price-amount { 
    font-size: 4rem; 
    font-weight: 400; 
    color: var(--wood-dark); 
    margin: 1.5rem 0; 
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.btn-primary-custom { 
    background: linear-gradient(135deg, var(--wood-dark), var(--fire-orange)); 
    border: none; 
    padding: 15px 40px; 
    border-radius: 50px; 
    font-weight: 500; 
    transition: all 0.4s ease; 
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    color: white;
    font-size: 1.1rem;
}

.btn-primary-custom:hover { 
    background: linear-gradient(135deg, var(--earth-dark), var(--wood-dark)); 
    transform: translateY(-3px); 
    box-shadow: 0 12px 25px rgba(139, 69, 19, 0.4);
    color: white;
}

.contact-form { 
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); 
    border-radius: 20px; 
    padding: 3.5rem; 
    box-shadow: 0 20px 50px var(--shadow-warm); 
    border: 2px solid var(--wood-light);
}

.form-control { 
    border: 2px solid var(--earth-light); 
    border-radius: 12px; 
    padding: 15px 20px; 
    transition: all 0.3s ease; 
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.form-control:focus { 
    border-color: var(--wood-dark); 
    box-shadow: 0 0 0 0.3rem rgba(139, 69, 19, 0.15); 
    background-color: white;
}

.scroll-indicator { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation: gentle-bounce 3s infinite; 
    color: white;
    font-size: 1.5rem;
}

@keyframes gentle-bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
        opacity: 0.8;
    }
    40% { 
        transform: translateX(-50%) translateY(-15px); 
        opacity: 1;
    }
    60% { 
        transform: translateX(-50%) translateY(-8px); 
        opacity: 0.9;
    }
}

.divider { 
    width: 80px; 
    height: 3px; 
    background: linear-gradient(90deg, var(--wood-dark), var(--fire-orange)); 
    margin: 3rem auto; 
    border-radius: 2px;
}

.authenticity-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--wood-dark), var(--fire-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.bg-wood-light {
    background-color: var(--cream);
}

.text-wood-dark {
    color: var(--wood-dark);
}

.text-fire-orange {
    color: var(--fire-orange);
}

.border-wood {
    border-color: var(--wood-light);
}

/* Styles pour les messages d'alerte */
.alert {
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 1rem;
    border: 2px solid transparent;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #28a745;
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #dc3545;
    color: #721c24;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border-color: #17a2b8;
    color: #0c5460;
}

/* Barre de menu verticale - Desktop */
.vertical-navbar {
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95), rgba(210, 105, 30, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vertical-navbar .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    margin: 5px 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 60px;
    position: static;
}

.vertical-navbar .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    color: white;
}

.vertical-navbar .nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.vertical-navbar .nav-link i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.vertical-navbar .nav-link span {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Contenu principal */
.main-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    padding-left: 250px;
    width: 100%;
}

/* Forcer la largeur complète sur mobile et tablette */
@media (max-width: 768px) {
    .main-content {
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    body {
        padding: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .hero-title { 
        font-size: 3rem; 
    }

    .hero-subtitle { 
        font-size: 1.4rem; 
    }

    .section-title { 
        font-size: 2.5rem; 
    }

    .main-gallery-img { 
        height: 350px; 
    }

    .gallery-img { 
        height: 200px; 
    }

    .feature-card {
        padding: 2rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    body {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
    
    /* Correction des icônes en mode mobile très petit */
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
    }
    
    .feature-card .feature-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
    }
}

/* Bouton hamburger pour mobile */
.mobile-menu-toggle {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95), rgba(210, 105, 30, 0.95));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 1), rgba(210, 105, 30, 1));
    transform: scale(1.1);
}

/* Mobile et tablette styles simplifiés avec Bootstrap natif */
@media (max-width: 768px) {
    .vertical-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.98), rgba(210, 105, 30, 0.98));
        backdrop-filter: blur(10px);
        border-radius: 0;
        padding: 100px 15px 20px 15px;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        transform: translateY(0);
        top: 0;
        left: 0;
    }

    .vertical-navbar.active {
        opacity: 1;
        visibility: visible;
    }

    .vertical-navbar .nav-link {
        padding: 10px 12px;
        margin: 3px 0;
        border-radius: 6px;
        text-align: left;
        font-size: 0.9rem;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
        min-height: 40px;
        flex-shrink: 0;
        position: static;
    }

    .vertical-navbar .nav-link i {
        font-size: 1rem;
        margin-right: 10px;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
    }

    .vertical-navbar .nav-link span {
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Cacher le menu vertical en mode tablette/mobile */
    .vertical-navbar {
        display: none;
    }
    
    .vertical-navbar.active {
        display: flex;
    }
    
    /* Correction des icônes en mode mobile */
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.8rem !important;
    }
    
    /* Correction des icônes dans les cartes d'accès */
    .feature-card .feature-icon {
        width: 70px !important;
        height: 70px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.8rem !important;
    }
} 