/* === BANNERS CSS - Nina Beauté === */

/* =================
   HERO INDEX STYLES
   ================= */

.hero-index {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px; /* Espace pour la navbar */
    background:
        radial-gradient(ellipse at top left, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg,
            rgba(220, 38, 38, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(245, 158, 11, 0.1) 100%
        );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    min-height: 100vh;
    padding: var(--space-8) 0;
}

.hero-text {
    color: var(--primary-white);
}

.hero-greeting {
    margin-bottom: var(--space-4);
}

.hero-greeting-text {
    font-size: var(--text-lg);
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    font-family: var(--font-family-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-name {
    display: block;
    background: linear-gradient(45deg, #ffffff 0%, #f59e0b 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: textShine 3s ease-in-out infinite;
}

.hero-flag {
    font-size: 3rem;
    margin-left: var(--space-4);
}

.hero-subtitle-wrapper {
    margin-bottom: var(--space-8);
}

.hero-subtitle {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.text-gradient {
    background: linear-gradient(45deg, var(--accent-gold), var(--primary-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background:
        conic-gradient(from 0deg,
            var(--accent-gold) 0%,
            var(--primary-red) 25%,
            var(--accent-gold) 50%,
            var(--primary-red) 75%,
            var(--accent-gold) 100%
        );
    border-radius: var(--border-radius-2xl);
    animation: pulse-bg 3s ease-in-out infinite;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-nina-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-nina-image:hover {
    transform: scale(1.05);
}

/* Décorations animées */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background:
        radial-gradient(circle at 30% 30%,
            rgba(245, 158, 11, 0.3) 0%,
            rgba(220, 38, 38, 0.2) 50%,
            transparent 100%
        );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: var(--text-2xl);
    animation: float 3s ease-in-out infinite, glow 4s ease-in-out infinite;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.decoration-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.decoration-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.decoration-3 {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.decoration-4 {
    top: 10%;
    left: -15%;
    animation-delay: 0.5s;
}

/* Badge d'expertise */
.expertise-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl);
    animation: float 2s ease-in-out infinite;
    z-index: 5;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: var(--text-sm);
    white-space: nowrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-white);
    z-index: 10;
}

.scroll-arrow {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: var(--text-xl);
    transition: all var(--transition-base);
    text-decoration: none;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-2px);
    color: var(--primary-white);
}

.scroll-text {
    font-size: var(--text-xs);
    opacity: 0.8;
}

/* =================
   HERO OTHER STYLES
   ================= */

.hero-other {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    background:
        radial-gradient(ellipse at top, rgba(220, 38, 38, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    overflow: hidden;
}

.hero-other-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-other-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(220, 38, 38, 0.2) 0%,
            rgba(245, 158, 11, 0.1) 50%,
            rgba(220, 38, 38, 0.15) 100%
        );
}

.hero-other-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.08) 1px, transparent 1px),
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    animation: patternMove 20s linear infinite;
}

.hero-other-content {
    position: relative;
    z-index: 10;
    color: var(--primary-white);
    text-align: center;
    padding: var(--space-12) 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
    opacity: 0.9;
}

.breadcrumb-item {
    color: var(--primary-white);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.breadcrumb-item:hover {
    opacity: 1;
}

.breadcrumb-current {
    opacity: 0.7;
}

.breadcrumb-separator {
    margin: 0 var(--space-2);
    opacity: 0.6;
}

.hero-other-main {
    margin-bottom: var(--space-8);
}

.hero-other-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--primary-white);
    font-family: var(--font-family-heading);
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(245, 158, 11, 0.9) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-other-subtitle {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.hero-other-description {
    font-size: var(--text-lg);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* =================
   ANIMATIONS
   ================= */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(2deg); }
    66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes patternMove {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px; }
    100% { background-position: 60px 60px, 40px 40px, 80px 80px; }
}

@keyframes glow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(245, 158, 11, 0.3),
            0 0 40px rgba(220, 38, 38, 0.2);
    }
    50% {
        box-shadow:
            0 0 30px rgba(245, 158, 11, 0.5),
            0 0 60px rgba(220, 38, 38, 0.3);
    }
}

.animate-slide-down {
    animation: slideInDown var(--transition-slow);
}

.animate-slide-up {
    animation: slideInUp var(--transition-slow);
}

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn var(--transition-slow);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(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); }
}

/* =================
   RESPONSIVE DESIGN
   ================= */

@media (max-width: 768px) {
    .hero-index {
        padding-top: 80px;
    }

    .hero-other {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-flag {
        font-size: 2rem;
        margin-left: var(--space-2);
    }

    .hero-image-wrapper {
        width: 300px;
        height: 400px;
    }

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

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

    .hero-other-title {
        font-size: var(--text-3xl);
    }

    .breadcrumb {
        font-size: var(--text-xs);
    }

    .hero-other-content {
        padding: var(--space-8) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-image-wrapper {
        width: 250px;
        height: 350px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-other-title {
        font-size: var(--text-2xl);
    }
}

/* Hover Effects & Button Styles */
.hover-lift {
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-gradient-primary {
    background: linear-gradient(135deg,
        var(--primary-red) 0%,
        var(--accent-gold) 50%,
        var(--primary-red) 100%
    );
    background-size: 200% 200%;
    border: none;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-gradient-primary:hover {
    background-position: 100% 0%;
    animation: gradientShift 0.5s ease-in-out;
}

.cta-glow {
    box-shadow:
        0 4px 15px rgba(220, 38, 38, 0.4),
        0 0 20px rgba(245, 158, 11, 0.3);
}

.cta-glow:hover {
    box-shadow:
        0 6px 25px rgba(220, 38, 38, 0.6),
        0 0 30px rgba(245, 158, 11, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left var(--transition-slow);
}

.btn-gradient-primary:hover .btn-shine {
    left: 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
