/* Event Landing Pages - Moderne & Épuré */

.event-landing {
    font-family: inherit;
}

/* Hero */
.event-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.event-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 71, 144, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.event-hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    text-align: center;
}

.event-breadcrumb {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.event-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.event-breadcrumb a:hover {
    text-decoration: underline;
}

.event-breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

.event-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 25px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    font-size: 15px;
    opacity: 0.95;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta-item i {
    opacity: 0.8;
}

.event-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.event-status-upcoming {
    background: rgba(251, 192, 45, 0.9);
    color: #1a1a1a;
}

.event-status-ongoing {
    background: #28a745;
    color: #fff;
}

.event-status-completed {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fbc02d;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-cta:hover {
    background: #ffe066;
    transform: translateY(-2px);
    color: #1a1a1a;
}

.event-cta-large {
    padding: 18px 44px;
    font-size: 18px;
}

/* Sections */
.event-section {
    padding: 80px 0;
}

.event-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* Description */
.event-description {
    background: #fff;
}

.event-description-content {
    padding: 0 20px;
}

.event-description-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* Info cards */
.event-info-cards {
    background: #f8f9fa;
}

.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.event-info-card:hover {
    transform: translateY(-4px);
}

.event-info-card i {
    font-size: 36px;
    color: #214790;
    margin-bottom: 20px;
}

.event-info-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.event-info-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Teams */
.event-teams {
    background: #fff;
}

.event-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.event-team-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.event-team-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.event-team-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.event-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-team-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.event-team-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Matches */
.event-matches {
    background: #f8f9fa;
}

.event-matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-match-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.event-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.event-match-team {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.event-match-team .team-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

.event-match-team .team-country {
    font-size: 13px;
    color: #888;
}

.event-match-score {
    flex: 0 0 auto;
    text-align: center;
    min-width: 140px;
}

.event-match-score .score,
.event-match-score .vs {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #214790;
    margin-bottom: 8px;
}

.event-match-score .vs {
    color: #888;
}

.event-match-score .match-date,
.event-match-score .match-venue {
    display: block;
    font-size: 13px;
    color: #666;
}

.event-match-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #fbc02d;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

/* CTA Bottom */
.event-cta-bottom {
    background: linear-gradient(135deg, #214790 0%, #1a3569 100%);
    color: #fff;
}

.event-cta-bottom .event-section-title {
    color: #fff;
    margin-bottom: 25px;
}

.event-cta-bottom .event-cta {
    background: #fbc02d;
    color: #1a1a1a;
}

.event-cta-bottom .event-cta:hover {
    background: #ffe066;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 991px) {
    .event-hero {
        min-height: 60vh;
    }
    .event-cards-grid {
        grid-template-columns: 1fr;
    }
    .event-match-teams {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .event-meta {
        flex-direction: column;
        gap: 15px;
    }
    .event-teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
