/* ================================
   PARTAGEONS LA ROUTE - STYLES
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}

/* Background Gradients */
.bg-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-event {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   HEADER STYLES
   ================================ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header.banner-header {
    background: rgba(250, 98, 123, 0.95) !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.logo-event {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b6b;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img,
.logo-event:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: black;
    font-size: 2.5rem;
}

.emoji-icons {
    font-size: 1.5rem;
    margin-left: 10px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.event-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57) !important;
    color: white !important;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.back-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* ================================
   HERO SECTIONS
   ================================ */
.hero {
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-event {
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/event_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: -2;
}

.hero-event::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-event h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero p, .hero-event p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-event p {
    font-size: 1.4rem;
    max-width: 900px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.event-date {
    font-size: 6rem;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

/* ================================
   BUTTONS
   ================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-button-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    margin: 15px;
}

.cta-button-large:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* ================================
   FEATURES & CARDS
   ================================ */
.features {
    background: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

/* ================================
   EVENT INFO SECTION
   ================================ */
.event-info {
    background: white;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.values-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

.illustration {
    text-align: center;
    font-size: 10rem;
    opacity: 0.8;
}

/* ================================
   ACTIVITIES & TIMELINE
   ================================ */
.activities {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
}

.activity-timeline {
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-item {
    background: white;
    margin: 20px 0;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    border-left: 5px solid #ff6b6b;
}

.timeline-time {
    font-weight: bold;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* ================================
   PRACTICAL INFO
   ================================ */
.practical-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.practical-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.practical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #feca57;
}

.practical-card ul {
    list-style: none;
}

.practical-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.practical-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #feca57;
    font-weight: bold;
}

/* ================================
   MAP SECTION
   ================================ */
.map-section {
    background: white;
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#event-map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.map-legend {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.map-legend h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.legend-marker {
    display: inline-block;
    width: 30px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.legend-marker.departure {
    background: #667eea;
    color: white;
    border-radius: 50%;
    padding: 3px;
}

.legend-marker.destination {
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    padding: 3px;
}

.legend-line {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #48dbfb;
    border-radius: 2px;
    margin-right: 15px;
    margin-left: 5px;
}

/* ================================
   ORGANIZERS SECTION
   ================================ */
.organizers-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 80px 0;
}

.organizer-info {
    margin-top: 40px;
}

.vest-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.vest-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
    transition: all 0.3s ease;
}

.vest-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.vest-description h3 {
    font-size: 1.8rem;
    color: #e17055;
    margin-bottom: 20px;
    font-weight: bold;
}

.vest-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.vest-description strong {
    color: #e17055;
}

/* ================================
   CTA SECTIONS
   ================================ */
.cta-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

/* ================================
   SHARE SECTION
   ================================ */
.share-section {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.share-buttons {
    margin-top: 30px;
}

.share-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #74b9ff;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.section-title-white {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-event h1 {
        font-size: 2rem;
    }
    
    .hero-event p {
        font-size: 1.1rem;
    }
    
    .event-date {
        font-size: 4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .illustration {
        font-size: 8rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        justify-content: center;
        text-align: center;
    }
    
    .practical-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .logo-event {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        align-items: center;
        color: black;
    }
    
    .vest-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .vest-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #event-map {
        height: 300px;
    }
    
    .map-legend {
        order: -1;
        padding: 20px;
    }



    header .banner{
        background-color: pink;
    }
} 