/* Fonts personnalisées */
@font-face {
    font-family: 'ABCWhyte';
    src: url('fonts/ABCWhyte-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCWhyte';
    src: url('fonts/ABCWhyte-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCWhyte';
    src: url('fonts/ABCWhyte-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCWhyte';
    src: url('fonts/ABCWhyte-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ABCWhyte', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ed8936;
}

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

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 30%, #f5f7fa 70%, #eef2f7 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(26, 26, 26, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #1a1a1a;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.highlight {
    color: #ff6b35;
    display: block;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    min-width: 180px;
}

.download-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-btn.scrolled {
    background: #1a1a1a;
    color: #ffffff;
}

/* Bouton Google Play - style inverse */
.download-btn.google-play {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
}

.download-btn.google-play:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-btn.google-play.scrolled {
    background: #ffffff;
    color: #1a1a1a;
}

.download-btn i {
    font-size: 20px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-small {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.btn-large {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image - App Slider */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.app-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: transparent;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: transparent;
}

.slide.active {
    opacity: 1;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
}

.slider-controls {
    display: none;
}

.slider-dots {
    display: none;
}

/* Sections communes */
.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Style & Experience Section */
.style-experience {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.style-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Image principale à gauche */
.style-main-card {
    position: relative;
}

.style-main-card .style-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 100%;
}

.style-main-card:hover .style-image-wrapper {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.style-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.style-main-card:hover .style-img-main {
    transform: scale(1.05);
}

/* Grille de 4 images à droite */
.style-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
    align-content: stretch;
}

.style-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.style-card-small {
    height: 100%;
    min-height: 285px;
}

.style-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}

.style-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.style-card:hover .style-image-wrapper {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.style-card-small .style-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.style-card:hover .style-img {
    transform: scale(1.1);
}

.style-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 15px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.style-card:hover .style-overlay,
.style-main-card:hover .style-overlay {
    transform: translateY(100%);
}

.style-overlay-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.style-overlay-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.style-overlay-title-small {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Comment ça marche */
.how-it-works {
    padding: 120px 0;
    background: #ffffff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: #ed8936;
    transform: scale(1.1);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Boutiques partenaires */
.partners {
    padding: 120px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.partners-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    min-height: 120px;
    flex-shrink: 0;
    min-width: 200px;
}

.partner-item:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.partner-logo-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Avantages */
.benefits {
    padding: 120px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.benefit-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: #ed8936;
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .download-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
}

.cta .download-btn:hover {
    background: #ed8936;
    color: #ffffff;
    border-color: #ed8936;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 80px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.footer-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ed8936;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-link:hover {
    background: #ed8936;
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #ed8936;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 14px;
}

/* Animations avancées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animations d'entrée */
.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.step {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

.partner-item {
    animation: scaleIn 0.6s ease-out;
}

/* Effet de flottement pour le slider */
.app-slider {
    animation: float 6s ease-in-out infinite;
}

/* Amélioration des transitions */
.download-btn {
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

/* Effet de parallaxe pour les sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero sans clip-path */
.hero {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .app-slider {
        max-width: 300px;
    }
    
    .slider-container {
        height: 500px;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .style-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }

    .style-grid-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
        gap: 15px;
    }

    .style-img-main {
        height: 400px;
    }

    .style-card-small .style-img {
        height: 180px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .download-btn {
        padding: 10px 20px;
    }

    .app-slider {
        max-width: 250px;
    }
    
    .slider-container {
        height: 400px;
    }

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

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

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.step,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

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