@charset "utf-8";
/* Diamond Draft Weekend | Event Page | CSS | V1.0 */

/* ===== PAGE ===== */
.event-page {
    padding: 180px 40px 100px;
}

.event-page-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.event-hero {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 5px;
    align-items: center;
    margin-bottom: 60px;
}

.event-subtitle {
    margin-bottom: 40px;
    font-family: 'Impact', sans-serif;
    font-size: 44px;
    text-transform: uppercase;
    color: #c19d54;
    letter-spacing: 1px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 18px; /* space between icons and text */
}

.meta-row img {
    width: 24px;
    margin-top: 4px;
}

.meta-row strong {
    display: block;
    font-size: 28px;
    font-weight: 500;
}

.meta-row span {
    font-size: 28px;
    color: #fff;
}

/* ===== BUTTONS ===== */
.event-buttons {
    display: flex;
    gap: 20px;
}

/* ===== FLYER ===== */
.event-flyer {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}

.event-flyer img {
    width: 100%;
    aspect-ratio: 1500 / 1024;
    object-fit: cover;
    display: block;
}

.event-status {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(193,157,84,0.4);
    border-radius: 4px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
}

/* ===== LAYOUT ===== */
.event-layout {
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 35px;
    margin-bottom: 50px;
}

/* ===== PANELS ===== */
.event-box,
.sidebar-box {
    margin-bottom: 35px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    background:
        linear-gradient(
            125deg,
            rgba(0,0,0,0.92),
            rgba(13,17,59,0.88),
            rgba(0,0,0,0.92)
        );
}

.event-box h3,
.sidebar-box h3 {
    margin-bottom: 30px;
}

/* ===== OVERVIEW ===== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.overview-item h5 {
    margin-bottom: 10px;
}

.overview-item p {
    font-size: 15px;
    color: #cfd6ff;
}

/* ===== DETAILS ===== */
.event-details {
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
}

.detail-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    font-weight: 600;
    color: #fff;
}

.detail-row span:last-child {
    color: #cfd6ff;
}

/* ===== HIGHLIGHTS ===== */
.highlight-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item img {
    width: 24px;
    height: 24px;
}

.highlight-item h5 {
    margin-bottom: 6px;
}

.highlight-item p {
    margin: 0;
    color: #cfd6ff;
    font-size: 15px;
}

/* ===== MAP ===== */
.google-map {
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 25px;
}

.google-map iframe {
    width: 100%;
    height: 225px;
    border: 0;
}

.map-info h5 {
    margin-bottom: 10px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #c19d54;
}

/* ===== CTA ===== */
.event-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon img {
    width: 95px;
}

.cta-text h4 {
    font-size: 26px;
    margin-bottom: 8px;
}

.cta-text p {
    opacity: 0.7;
    max-width: 500px;
}

.cta-right {
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {

    .event-hero,
    .event-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .event-page {
        padding: 140px 20px 80px;
    }

    .event-info h1 {
        font-size: 62px;
    }

    .event-subtitle {
        font-size: 32px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .event-buttons,
    .sponsors-cta,
    .cta-left {
        flex-direction: column;
        align-items: flex-start;
    }

}