/* ==========================================================================
   SECTION HERO INFRASTRUCTURES
   ========================================================================== */

/* Hero Style Infrastructures V2 */
.hero-infrastructures-v2 {
    min-height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 20px;
}

/* Sur grands écrans, on réduit l'alignement centré */
@media (min-width: 1025px) {
    .hero-infrastructures-v2 {
        align-items: flex-start;
        padding-top: 40px;
    }
}

/* Fond noir pur */
.hero-infrastructures-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

.hero-infrastructures-v2::after {
    display: none;
}

.hero-content-v2 {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Partie gauche - Texte */
.hero-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

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

.hero-left .badge {
    display: inline-block;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-left h1 .line1 {
    display: block;
    color: #fff;
}

.hero-left h1 .line2 {
    display: block;
    color: #ff0000;
    margin-top: 10px;
}

.hero-left .subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #ff0000;
    color: #ff0000;
}

/* Partie droite - Visual */
.hero-right {
    position: relative;
    height: 600px;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.5s forwards;
}

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

/* Icône stade en fond */
.hero-stadium-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.05;
}

.hero-stadium-bg svg {
    width: 100%;
    height: 100%;
    fill: #ff0000;
}

/* Stats flottantes */
.floating-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

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

.stat-bubble:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.stat-bubble:nth-child(2) {
    top: 15%;
    right: 10%;
    animation-delay: 2s;
}

.stat-bubble:nth-child(3) {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.stat-bubble:nth-child(4) {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.stat-bubble .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 5px;
}

.stat-bubble .label {
    font-size: 0.875rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #666, transparent);
    margin: 0 auto;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ==========================================================================
   SECTION INFORMATIONS STADE
   ========================================================================== */

.infos-stade-section {
    padding: 100px 0;
    background: #ffffff;
    color: #000;
    position: relative;
    overflow: hidden;
}

/* Grille d'informations */
.infos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #000;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grille d'infos */
.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,0,0,0.3);
    background: rgba(255,0,0,0.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.info-card:hover::before {
    transform: translateX(0);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,0,0,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff0000;
    fill: none;
    stroke-width: 2;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-card .highlight {
    color: #ff0000;
    font-weight: 700;
}

/* ==========================================================================
   SECTION NOUS TROUVER
   ========================================================================== */

.nous-trouver-section {
    padding: 100px 0;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.access-header {
    text-align: center;
    margin-bottom: 80px;
}

.access-badge {
    display: inline-block;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 20px;
}

.access-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #fff;
}

.access-subtitle {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section accès */
.access-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.access-left h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.address-block {
    margin-bottom: 30px;
}

.address-block h4 {
    color: #ff0000;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.address-block p {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.6;
}

.parking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.parking-card {
    background: rgba(255,0,0,0.05);
    border: 1px solid rgba(255,0,0,0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.parking-card:hover {
    transform: translateY(-3px);
    background: rgba(255,0,0,0.08);
    border-color: rgba(255,0,0,0.4);
}

.parking-card .number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff0000;
    display: block;
}

.parking-card .label {
    font-size: 0.875rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.access-right {
    position: relative;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ff0000;
    opacity: 0.3;
}

/* Boutons CTA */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    border-color: #ff0000;
    color: #ff0000;
}

/* Info additionnelle */
.additional-info {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.info-block h4 {
    color: #ff0000;
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.info-block p {
    color: #aaa;
    line-height: 1.6;
}

.info-block a {
    color: #ff0000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-block a:hover {
    opacity: 0.8;
}

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

/* Responsive Hero Infrastructures */
@media (max-width: 1024px) {
    .hero-infrastructures-v2 {
        align-items: center;
        padding-top: 40px;
    }
    
    .hero-content-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left .subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-right {
        height: 400px;
        margin-top: 20px;
    }
    
    .hero-stadium-bg {
        width: 300px;
        height: 300px;
    }
    
    /* Section Accès responsive */
    .access-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .access-right {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-infrastructures-v2 {
        padding: 20px;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 80px;
    }
    
    .hero-content-v2 {
        padding: 0 20px;
    }
    
    .hero-left .badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-left h1 .line2 {
        margin-top: 5px;
    }
    
    .hero-left .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-right {
        height: 300px;
        margin-top: 40px;
    }
    
    .hero-stadium-bg {
        width: 250px;
        height: 250px;
    }
    
    .stat-bubble {
        padding: 15px 20px;
    }
    
    .stat-bubble .number {
        font-size: 1.8rem;
    }
    
    .stat-bubble .label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Section Infos responsive */
    .infos-stade-section {
        padding: 60px 0;
    }
    
    .infos-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .infos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 30px;
    }
    
    /* Section Nous trouver responsive */
    .nous-trouver-section {
        padding: 60px 0;
    }
    
    .access-container {
        padding: 0 20px;
    }
    
    .access-header {
        margin-bottom: 50px;
    }
    
    .access-title {
        font-size: 2rem;
    }
    
    .access-subtitle {
        font-size: 1.1rem;
    }
    
    .access-content {
        padding: 30px;
        gap: 40px;
    }
    
    .access-left h3 {
        font-size: 1.5rem;
    }
    
    .parking-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-map,
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }
    
    .hero-left .subtitle {
        font-size: 1rem;
    }
    
    .hero-stadium-bg {
        width: 200px;
        height: 200px;
    }
    
    .stat-bubble:nth-child(4) {
        display: none;
    }
}