/* Regard Sur - Website CSS Global */
/* Fichier: css/website.css */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1c1c1c;
    color: #f9f9f9;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #EE7900;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9f2e;
}

/* Variables CSS globales */
:root {
    --primary-orange: #EE7900;
    --primary-bg: #1c1c1c;
    --secondary-bg: #2a2a2a;
    --text-light: #f9f9f9;
    --accent-gradient: linear-gradient(135deg, #EE7900 0%, #ff8800 100%);
    --shadow-orange: rgba(238, 121, 0, 0.2);
    --glass-bg: rgba(42, 42, 42, 0.8);
    --border-radius: 20px;
}

/* Ajustement pour la navigation fixe */
body {
    padding-top: 80px; /* Hauteur de la navbar */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Custom cursor — positionné via translate3d par cursor.js */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #EE7900;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: opacity 0.3s ease;
}

.cursor.cursor--hover {
    transform: scale(1.8);
    background: rgba(238, 121, 0, 0.6);
}


@media (max-width: 768px), (hover: none) {
    .cursor { display: none !important; }
}

/* Navigation globale */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0rem 2rem;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #EE7900;
    text-decoration: none;
}

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

.nav-links a {
    color: #f9f9f9;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #EE7900;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EE7900;
    transition: width 0.3s ease;
}

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

/* Boutons globaux */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #EE7900 0%, #ff8800 100%);
    color: #1c1c1c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 121, 0, 0.3);
    text-decoration: none;
}

/* Scroll indicator global */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #EE7900;
    animation: bounce 2s infinite;
}

/* Titres de sections globaux */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #EE7900;
}

/* Page content */
.page-content {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.page-content h1, .page-content h2, .page-content h3 {
    color: #EE7900;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Footer global */
.footer {
    background: rgba(2, 2, 2, 0.98);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(238, 121, 0, 0.1);
}

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

.footer-section h4 {
    color: #EE7900;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a {
    color: #f9f9f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #EE7900;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(238, 121, 0, 0.1);
    opacity: 0.7;
}

.footer-calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 18px;
    background: transparent;
    color: #EE7900;
    border: 1px solid #EE7900;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
 
.footer-calendly-btn:hover {
    background: #EE7900;
    color: #1c1c1c;
}

/* Animations globales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Utilitaires globaux */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-orange {
    color: #EE7900;
}

.bg-gradient {
    background: var(--accent-gradient);
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(238, 121, 0, 0.15);
}

* {
    cursor: none !important;
}

/* Responsive global */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav {
        /* padding: 1rem; */
    }

    .page-content {
        padding: 0 1rem;
    }
}

/* Print styles globaux */
@media print {
    .cursor, nav, .scroll-indicator, .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title, .text-orange {
        color: #EE7900 !important;
    }

    .page-content {
        margin: 0;
        padding: 0;
    }
}