:root{
    --colorPrinc:#db3a00;
    --colorSecon:#2d8674;
    --textSombre1:#223330;
    --textSombre2:#5c3a2e;

    --color-primary: #db3a00;
    --color-secondary: #2d8674;
    --color-accent: #ff6b35;
    --color-text: #223330;
    --color-text-light: #5c3a2e;
    --color-bg: #ffffff;
    --color-bg-secondary: #f5f5f5;
    --color-card: #ffffff;
    --color-border: #e0e0e0;
    
    /* Dark Theme (will be activated via JS) */
    --color-primary-dark: #ff6b35;
    --color-secondary-dark: #3aa38a;
    --color-accent-dark: #ff9e5e;
    --color-text-dark: #f0f0f0;
    --color-text-light-dark: #d0d0d0;
    --color-bg-dark: #121212;
    --color-bg-secondary-dark: #1e1e1e;
    --color-card-dark: #242424;
    --color-border-dark: #333333;
    
    /* Shared */
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.16);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19);
    --border-radius: 12px;

}

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

html{
    scroll-behavior: smooth;
}


body{
    background-color:white;
    font-family: 'Poppins', sans-serif;
    scrollbar-width: none;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
}

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-base);
        }

        [data-theme="dark"] header {
            background-color: rgba(30, 30, 30, 0.95);
        }

        header.scrolled {
            padding: 0.5rem 2rem;
            box-shadow: var(--shadow-md);
        }

        #logo {
            font-family: 'Pacifico', cursive;
            font-size: 2rem;
            color: var(--color-primary);
            z-index: 1001;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links ul {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            position: relative;
            font-weight: 600;
            color: var(--color-text);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: var(--transition-base);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--color-primary);
        }



        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-primary);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 134, 116, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-links {
            list-style: none;
            text-align: center;
        }

        .mobile-links li {
            margin: 1.5rem 0;
        }

        .mobile-links a {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            padding: 0.5rem 1rem;
        }

        .mobile-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: white;
            transition: var(--transition-base);
        }

        .mobile-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content,
            .discover-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-image {
                order: -1;
                max-width: 80%;
                margin: 0 auto;
            }
            
            .discover-image {
                max-width: 80%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .suggestion-form {
                flex-direction: column;
            }
            
            .modal-content {
                grid-template-columns: 1fr;
            }
            
            .modal-image {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 6rem 1rem 3rem;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .partners-grid {
                grid-template-columns: 1fr 1fr;
            }
        }



        /* Footer */
        footer {
            background: var(--color-text);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            width: 100%;
            overflow-x: scroll;
            scrollbar-width: none;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-column h4 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            font-family: 'Pacifico', cursive;
            font-size: 1.8rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--color-primary);
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition-base);
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition-base);
        }

        .social-links a:hover {
            background: var(--color-primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }


/*****ANIMATIONS**************/




@keyframes showIcons {
    to{
        scale: 1;
        opacity: 1;
        background-color: white;
        color: var(--textSombre1);
    }
}



