/* ====================================
   VARIABLES ET RESET
   ==================================== */
:root {
    --color-cream: #fef7f0;
    --color-sand: #f9ede3;
    --color-warm: #fdf5ed;
    --color-orange: #e3980c;
    --color-red: #d1722b;
    --color-dark: #282320;
    --color-white: #ffffff;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-700: #374151;
    
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-warm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ====================================
   UTILITAIRES
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(40, 35, 32, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.bg-cream {
    background-color: var(--color-cream);
}

.bg-sand {
    background-color: var(--color-sand);
}

.bg-warm {
    background-color: var(--color-warm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ====================================
   BOUTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn-primary:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-orange);
    border-color: var(--color-orange);
}

.btn-outline:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-lg {
    padding: 0.65rem 1.4rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0.5rem;
    min-height: 100px;
    max-width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-dark);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.current-page {
    font-weight: normal;
    font-size: 0.95rem;
    margin-right: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--color-dark);
    transition: color 0.3s ease;
    font-weight: normal;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav-links a:not(.btn):hover {
    color: var(--color-orange);
}

.nav-links .btn {
    margin-left: 0.75rem;
    padding: 0.7rem 1.5rem;
    line-height: 1;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--color-white) !important;
    flex-shrink: 0;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    display: block;
}

.hero-text .lead {
    color: rgba(40, 35, 32, 0.8);
    margin-bottom: 1rem;
}

.hero-text p {
    color: rgba(40, 35, 32, 0.7);
    margin-bottom: 2rem;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* ====================================
   CARDS
   ==================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    margin-bottom: 1rem;
    color: var(--color-orange);
    transition: color 0.3s ease;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card:hover .card-icon {
    color: var(--color-red);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.card p {
    color: rgba(40, 35, 32, 0.7);
    line-height: 1.6;
}

/* ====================================
   RITUEL SECTION
   ==================================== */
.ritual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.ritual-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.ritual-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding-left: 1.5rem;
    position: relative;
    border-left: 4px solid var(--color-orange);
    margin-bottom: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step:nth-child(1) {
    border-left-color: var(--color-orange);
}

.step:nth-child(2) {
    border-left-color: var(--color-red);
}

.step:nth-child(3) {
    border-left-color: var(--color-dark);
}

.step h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(40, 35, 32, 0.8);
}

.quote {
    text-align: center;
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(40, 35, 32, 0.8);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid var(--color-orange);
    background-color: rgba(227, 152, 12, 0.05);
    border-radius: 0.5rem;
}

/* ====================================
   FEATURES GRID
   ==================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: var(--shadow-md);
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.feature p {
    font-size: 0.875rem;
    color: rgba(40, 35, 32, 0.7);
    line-height: 1.6;
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    color: rgba(40, 35, 32, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--color-orange);
    font-weight: 600;
}

/* ====================================
   TEAM SECTION
   ==================================== */
.team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.team-member {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.team-member img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.team-member p {
    color: rgba(40, 35, 32, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-member .btn {
    margin-top: 1.5rem;
}

.team-description {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(40, 35, 32, 0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-category {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-category:hover {
    box-shadow: var(--shadow-md);
}

.faq-category-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-category-header:hover {
    background-color: var(--color-cream);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

.faq-category-title h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--color-dark);
    margin: 0;
}

.faq-category-title p {
    font-size: 0.875rem;
    color: rgba(40, 35, 32, 0.6);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-orange);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-top: 1px solid var(--color-gray-100);
}

.faq-category-content.active {
    max-height: 2000px;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-100);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-cream);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: rgba(40, 35, 32, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 400px;
    padding: 0 1.5rem 1rem;
}

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

.faq-cta p {
    color: rgba(40, 35, 32, 0.7);
    margin-bottom: 1rem;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--color-white);
    border: none;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.pricing-card h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: rgba(40, 35, 32, 0.7);
    margin-bottom: 1.5rem;
}

.pricing-details {
    margin-top: 1.5rem;
}

.pricing-details p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35 !important;
    margin-top: 1.5rem;
}

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(227, 152, 12, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    display: block;
}

.contact-info {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.social-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.whatsapp {
    background-color: #25d366;
    color: white;
}

.social-link.whatsapp:hover {
    background-color: #128c7e;
}

.social-link.instagram {
    background-color: var(--color-orange);
    color: white;
}

.social-link.instagram:hover {
    background-color: var(--color-red);
}

.social-link.facebook {
    background-color: var(--color-orange);
    color: white;
}

.social-link.facebook:hover {
    background-color: var(--color-red);
}

.social-link.google {
    background-color: var(--color-orange);
    color: white;
}

.social-link.google:hover {
    background-color: var(--color-red);
}

.social-note {
    font-size: 0.875rem;
    color: rgba(40, 35, 32, 0.6);
}

/* ====================================
   FOOTER
   ==================================== */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   COOKIE BANNER
   ==================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: 2px solid var(--color-orange);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-dark);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .ritual-content,
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .team {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1400px) {
    .nav-links {
        gap: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    header nav {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    header nav {
        padding: 0.75rem 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        justify-content: flex-start;
    }
    
    .nav-links.active {
        max-height: 600px;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid var(--color-gray-200);
        text-align: center;
        font-size: 0.9rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }
    
    .nav-links .btn {
        margin-left: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .cards-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .card,
    .feature,
    .testimonial,
    .team-member {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
    }
}

