/* ========================================
   GALA LYON 2025 - STYLES
   Thème: Noir & Doré - Élégant & Royal
======================================== */

:root {
    --primary: #1a1a2e;
    --primary-dark: #0f0f1a;
    --gold: #d4af37;
    --gold-light: #f0d77c;
    --gold-dark: #b8962e;
    --white: #ffffff;
    --gray: #8a8a8a;
    --gray-light: #b5b5b5;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    padding: 0.7rem 0;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
}

.navbar .btn-outline-light {
    border-color: var(--gold);
    color: var(--gold);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Étoiles décoratives */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    color: var(--gold);
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 { top: 5%; left: 10%; font-size: 1rem; animation-delay: 0s; }
.star-2 { top: 8%; left: 25%; font-size: 0.7rem; animation-delay: 0.5s; }
.star-3 { top: 3%; right: 30%; font-size: 0.9rem; animation-delay: 1s; }
.star-4 { top: 12%; right: 15%; font-size: 1.2rem; animation-delay: 1.5s; }
.star-5 { top: 6%; right: 5%; font-size: 0.8rem; animation-delay: 2s; }
.star-6 { top: 15%; left: 5%; font-size: 0.6rem; animation-delay: 2.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Guirlandes */
.garland {
    position: absolute;
    top: 0;
    width: 200px;
    height: 150px;
    border-bottom: 2px solid var(--gold);
    opacity: 0.3;
}

.garland-left {
    left: 5%;
    border-radius: 0 0 50% 50%;
    border-left: 2px solid var(--gold);
}

.garland-right {
    right: 5%;
    border-radius: 0 0 50% 50%;
    border-right: 2px solid var(--gold);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content {
    padding: 2rem 0;
}

/* Church Badge */
.church-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.church-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--gold);
}

.church-badge span {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.church-badge .district {
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Theme Label */
.theme-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    text-align: center;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-inscription {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
}

.btn-inscription:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    color: var(--primary);
}

.btn-inscription.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-admin:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Flyer */
.hero-flyer-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.flyer-wrapper {
    position: relative;
    max-width: 380px;
}

.flyer-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gold);
    border-radius: 20px;
    filter: blur(40px);
    opacity: 0.2;
}

.flyer-img {
    position: relative;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.flyer-wrapper:hover .flyer-img {
    transform: scale(1.02);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

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

/* ========================================
   COUNTDOWN SECTION
======================================== */
.countdown-section {
    background: var(--primary-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.countdown-wrapper h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
}

.event-started {
    font-size: 1.5rem;
    color: var(--gold);
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.section-header.light h2 {
    color: var(--gold);
}

.gold-line {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
}

/* ========================================
   EVENT SECTION
======================================== */
.event-section {
    padding: 6rem 0;
    background: var(--primary);
}

.event-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.event-description p {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.event-description strong {
    color: var(--gold);
}

/* Dress Code Card */
.dress-code-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 3rem;
    max-width: 400px;
    margin: 0 auto 3rem;
}

.dress-code-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dress-code-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.dress-code-content h4 {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.dress-code-content p {
    font-size: 1.3rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin: 0;
}

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

/* ========================================
   INFOS SECTION
======================================== */
.infos-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.info-card h3 {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.info-main {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.info-sub {
    font-size: 1rem;
    color: var(--gray-light);
    margin: 0;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

/* ========================================
   ACCÈS SECTION
======================================== */
.acces-section {
    padding: 6rem 0;
    background: var(--primary);
}

.acces-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.acces-address {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.acces-address > i {
    font-size: 2rem;
    color: var(--gold);
}

.acces-address h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.acces-address p {
    color: var(--gray-light);
    margin: 0;
    line-height: 1.6;
}

.transport-list {
    margin-bottom: 2rem;
}

.transport-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.transport-item > i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.transport-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.transport-item p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--primary);
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#map {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Custom Marker */
.custom-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.marker-pin i {
    transform: rotate(45deg);
    color: var(--primary);
    font-size: 1rem;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0a15 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

/* ========================================
   FOOTER
======================================== */
.footer-section {
    background: var(--primary-dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .infos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-flyer-col {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gold-line {
        width: 60px;
    }
    
    .acces-card {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .infos-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .dress-code-card {
        flex-direction: column;
        text-align: center;
    }
    
    .garland {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-inscription {
        width: 100%;
        justify-content: center;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
