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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
    overflow-x: hidden;
}

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

/* Header/Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 89, 132, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f4d03f;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dates {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #f4d03f;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f4d03f, transparent);
    margin: 30px auto 50px;
    border-radius: 10px;
}

.flight-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.flight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 30px 45px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #f4d03f, #d4af37);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.flight-card:hover::before {
    transform: scaleX(1);
}

.flight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(244, 208, 63, 0.3);
}

.flight-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.flight-card .label {
    font-size: 0.85em;
    color: #f4d03f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.flight-card .detail {
    font-size: 1.6em;
    font-weight: 700;
    color: white;
    margin: 5px 0;
}

.flight-card .location {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fc);
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 15px;
    color: #0f2027;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #d4af37, #f4d03f);
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    font-weight: 300;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
        #2E5984 0%,
        #d4af37 30%,
        #C41E3A 50%,
        #d4af37 70%,
        #2E5984 100%
    );
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 90px;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(220, 20, 60, 0.05));
    border-left: 4px solid #C41E3A;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.dot-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #d4af37;
    position: relative;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.day-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.timeline-content h3 {
    color: #0f2027;
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: 700;
}

.timeline-content .day-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.15em;
}

.timeline-content p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

/* City Sections */
.city-section {
    padding: 100px 20px;
    position: relative;
}

.city-section.london {
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
}

.city-section.liverpool {
    background: linear-gradient(to bottom, #ffffff, #f8f9fc);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    color: #0f2027;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header .subtitle {
    font-size: 1.25em;
    color: #666;
    font-style: italic;
    font-weight: 300;
}

/* Match Banner */
.match-banner {
    background: linear-gradient(135deg, #C41E3A 0%, #DC143C 50%, #C41E3A 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 70px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
    position: relative;
    overflow: hidden;
}

.match-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.match-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.match-time {
    font-size: 1.6em;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.match-note {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

/* Category Sections */
.category {
    margin-bottom: 80px;
}

.category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: #0f2027;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, #d4af37, #f4d03f) border-box;
    border-bottom: 3px solid;
    font-weight: 700;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
}

.venue-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.venue-card:hover::before {
    transform: scaleY(1);
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.venue-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #0f2027;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.venue-card .type {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.05em;
    margin-bottom: 8px;
}

.venue-card .location {
    color: #888;
    font-size: 0.95em;
    margin-bottom: 18px;
    font-weight: 500;
}

.venue-card .description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.98em;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2E5984;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 0.95em;
    position: relative;
}

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

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

.map-link:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.multi-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 208, 63, 0.5), transparent);
}

footer p {
    margin: 8px 0;
    font-size: 1.2em;
    font-weight: 400;
}

.footer-note {
    color: #f4d03f;
    font-size: 1em;
    margin-top: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .dates {
        font-size: 1.1em;
    }

    .flight-info {
        flex-direction: column;
        align-items: center;
    }

    .flight-card {
        min-width: 100%;
        max-width: 350px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-dot {
        left: 5px;
    }

    .section-title-wrapper h2 {
        font-size: 2.2em;
    }

    .section-header h2 {
        font-size: 2.2em;
    }

    .category h3 {
        font-size: 1.7em;
    }

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

    .match-banner h3 {
        font-size: 1.8em;
    }

    .venue-card h4 {
        font-size: 1.5em;
    }

    .day-number {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 80px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-badge {
        font-size: 0.75em;
        padding: 6px 18px;
    }

    .flight-card {
        padding: 25px 30px;
    }

    .timeline-content {
        padding: 20px;
    }

    .section-title-wrapper h2 {
        font-size: 1.8em;
    }

    .match-banner {
        padding: 35px 25px;
    }

    .match-banner h3 {
        font-size: 1.5em;
    }
}
