/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}
.nav-brand a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #333;
}

.btn-explorer {
    background: #4ECDC4;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-explorer:hover {
    background: #45b7ae;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-voir-produits {
    background: #9ACD32;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-voir-produits:hover {
    background: #8db82a;
    transform: translateY(-2px);
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.vision h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.vision p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #ffffff;
}

.products h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 1 !important;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-info .price {
    font-size: 24px;
    font-weight: 700;
    color: #4ECDC4;
    margin: 0;
}

/* Packs Section */
.packs {
    padding: 100px 0;
    background: #ffffff;
}

.packs h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pack-card {
    background: white;
    padding: 48px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pack-highlighted {
    border-color: #9ACD32 !important;
    transform: scale(1.02);
    position: relative;
}

.pack-highlighted:hover {
    transform: scale(1.02) translateY(-4px);
}

.pack-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.pack-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pack-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Why Section */
.why {
    padding: 100px 0;
    background: #ffffff;
}

.why h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
}

.feature-green .icon-circle {
    background: rgba(154, 205, 50, 0.15);
    color: #9ACD32;
}

.feature-blue .icon-circle {
    background: rgba(78, 205, 196, 0.15);
    color: #4ECDC4;
}

.feature-gray .icon-circle {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

.feature-yellow .icon-circle {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #4ECDC4;
}

.contact-icon {
    font-size: 20px;
}

.contact-form-container {
    background: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-envoyer {
    background: #4ECDC4;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-envoyer:hover {
    background: #45b7ae;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left p {
    font-size: 14px;
    color: #bdc3c7;
    margin: 0;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
 
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    padding: 24px;
    max-width: 380px;
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-cookie.accept {
    background: #4ECDC4;
    color: white;
}

.btn-cookie.accept:hover {
    background: #45b7ae;
}

.btn-cookie.decline {
    background: #e9ecef;
    color: #666;
}

.btn-cookie.decline:hover {
    background: #dee2e6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 15px 20px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .vision h2, .products h2, .packs h2, .why h2, .testimonials h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .vision, .products, .packs, .why, .testimonials, .contact {
        padding: 60px 0;
    }

    .vision h2, .products h2, .packs h2, .why h2, .testimonials h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .packs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pack-highlighted {
        transform: none;
    }

    .pack-highlighted:hover {
        transform: translateY(-4px);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        justify-content: center;
    }

    .cookie-popup {
        right: 12px;
        left: 12px;
        max-width: none;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        padding: 12px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-voir-produits {
        padding: 14px 28px;
        font-size: 16px;
    }

    .vision, .products, .packs, .why, .testimonials, .contact {
        padding: 40px 0;
    }

    .vision h2, .products h2, .packs h2, .why h2, .testimonials h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .vision p {
        font-size: 16px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info .price {
        font-size: 20px;
    }

    .pack-card {
        padding: 32px 24px;
    }

    .pack-card h3 {
        font-size: 20px;
    }

    .pack-price {
        font-size: 28px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .testimonial {
        padding: 24px 20px;
    }

    .testimonial p {
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-info > p {
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-envoyer {
        padding: 14px 28px;
        font-size: 16px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add padding top to sections for fixed header */
section {
    scroll-margin-top: 90px;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for clickable elements */
.product-card,
.pack-card,
.testimonial {
    cursor: pointer;
}

.product-card:hover,
.pack-card:hover,
.testimonial:hover {
    cursor: pointer;
}

/* Focus styles for accessibility */
.btn-explorer:focus,
.btn-voir-produits:focus,
.btn-envoyer:focus,
.btn-cookie:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

/* Print styles */
@media print {
    .header,
    .cookie-popup {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
        background: none;
        color: #333;
    }
    
    .hero-content h1 {
        color: #333;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-explorer,
    .btn-voir-produits,
    .btn-envoyer {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles would go here */
}
img{
    opacity: 1 !important;
}