
/* Reset et variables CSS */
:root {
    --primary-color: #2d5a47;
    --primary-dark: #1e3d2f;
    --secondary-color: #f4c2a7;
    --accent-pink: #f4c2a7;
    --accent-peach: #f4c2a7;
    --accent-gold: #d4a574;
    --accent-emerald: #2d5a47;
    --light-purple: #f8f4f1;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

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

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--accent-emerald);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
   /* transform: translateY(-2px);*/
}

.btn-secondary {
    background-color: var(--accent-peach);
    color: var(--accent-emerald);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-emerald);
    border: 2px solid var(--accent-emerald);
}

.btn-outline:hover {
    background-color: var(--light-purple);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-emerald);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom: 1px solid #2d5a47;
}
.nav-logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.logo-header {
    height: auto;
   max-width: 280px;
}

.footer-content-logo {

    margin-bottom: 2rem;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background-color: var(--gray-700);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-peach);
    color: var(--accent-emerald);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1rem;
}

.avatar-group {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -0.5rem;
}

.avatar-1 { background-color: var(--accent-peach); }
.avatar-2 { background-color: var(--accent-pink); }
.avatar-3 { background-color: var(--light-purple); }

.social-proof-text {
    font-weight: 500;
    color: var(--gray-800);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 28rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 2.5rem;
    left: -2.5rem;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 5rem;
    right: -1.25rem;
    animation-delay: 0.7s;
}

.card-icon {
    font-size: 1.25rem;
}

.card-title {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sections communes */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-peach);
    color: var(--accent-emerald);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0.5), var(--white));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--accent-peach);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.benefit-description {
    color: var(--gray-600);
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    /*background-color: var(--white);*/
    background: linear-gradient(0deg, var(--white) 0%, var(--gray-50) 50%, var(--light-purple) 100%);
}

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

.product-image {
    position: relative;
}

.product-circle {
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-peach), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.product-img {
    width: 80%;
    height: auto;
    border-radius: 50%;
}

.product-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.badge-1 {
    /*top: 1.25rem;
    left: -1rem;
    transform: rotate(3deg);
    background-color: var(--accent-peach);
    color: var(--accent-emerald);*/
    top: 2rem;
    left: 0rem;
    background-color: var(--accent-peach);
    /* transform: rotate(0deg); 
    background-color: #61912e;*/
    color: #ffffff;
}

.badge-2 {
   /* bottom: 2.5rem;
    right: -1rem;
    transform: rotate(-3deg);
    background-color: var(--accent-emerald);
    color: var(--white);*/
    bottom: 2.5rem;
    right: -1rem;
    /* transform: rotate(0deg); */
    background-color: var(--accent-emerald);
    color: var(--white);
}



.badge-3 {
   /* top: 50%;
    left: -2rem;
    transform: translateY(-50%) rotate(-8deg);
    background-color: var(--accent-gold);
    color: var(--accent-emerald);*/
    top: 61%;
    left: -0.5rem;
    transform: translateY(-51%) rotate(0deg);
    background-color: var(--accent-gold);
    color: var(--accent-emerald);
}

.buy-button {
  background-color: #f9c8ae;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #2e5332;
  font-weight: 500;
  font-size: 16px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.product-description {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.ingredients-list {
    margin-bottom: 2rem;
}

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

.check-icon {
    color: var(--accent-emerald);
    font-weight: 600;
    margin-top: 0.125rem;
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-current {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-800);
}

.price-old {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--accent-gold);
    color: var(--accent-emerald);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--accent-peach);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-emerald);
}

.faq-question h3 {
    font-weight: 500;
    color: var(--gray-800);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-600);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('image/bg_interne_vitawin.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    color: var(--white);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--light-purple);
    border-top: 1px solid var(--accent-peach);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
}

.vert {
  color: #2d5a47;
}
.semon {
  color: #e0b086;
}
.badge_gr {
    background: radial-gradient(circle, #e9f3f0 30%, #2d5a47 100%);
    color: #2d5a47;
    border-radius: 50%;
    padding: 8px 8px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin: 0 5px;
}





.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-emerald);
}

.footer-bottom {
    border-top: 1px solid var(--accent-peach);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .product-circle {
        width: 24rem;
        height: 24rem;
    }
    
    .section-title, 
    .product-title, 
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /*.nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }*/
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
        margin-bottom: 120px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .product-circle {
        width: 20rem;
        height: 20rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-description {
        margin: 0 auto;
    }
    
}

 @media screen and (max-width: 991px) {
       .card-1 {
        top: -1.5rem !important;
        left: -2.5rem !important;
       }
       .card-2 {
        bottom: -3rem !important;
        right: -0.25rem !important;
       }
    .hero-section {
    padding-bottom: 0rem;
    min-height: auto;
    }
    }

@media screen and (max-width: 768px) {

     .card-1 {
        top: -5.5rem !important;
        left: -0.5rem !important;
       }
       .card-2 {
        bottom: 12rem !important;
        right: 1.75rem !important;
       }
       .hero-section {
    padding-bottom: 0rem;
    min-height: auto;
    }

@media screen and (max-width: 479px) {
    .hero-social-proof {
      
        margin-bottom: 188px;
    }
     .card-1 {
        top: -8.5rem !important;
    
       }
       .card-2 {
        bottom: 10rem !important;
     
       }
      
     }



 /* Menu mobile - par défaut (desktop) */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

/* Responsive pour mobile (≤767px) */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 83px;
    right: 20px;
    background: linear-gradient(0deg, var(--white) 0%, var(--gray-50) 50%, var(--light-purple) 100%);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width:60%;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
     align-items: flex-start;
        }
    
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-link,
  .nav-logo-link {
    color: #000;
    padding: 10px 0;
    font-weight: 500;
  }

  .nav-logo {
    max-height: 30px;
  }
}