/* Outer Detail Box */
.detail-box {
    /* width: 962px; */
    padding: 32px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto;
}

/* Container & Content */
.detail-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.detail-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.event-details {
    display: flex;
    align-items: start;
}
.header-icon {
    margin-right: 8px;
}
.header-title {
    color: #4f5466;
    font-size: 18px;
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 21.6px;
}

/* New Content Section */
.new-content-section {
    display: flex;
    flex-direction: column;
}

/* Event Card */
.event-card {
    display: flex;
    flex-direction: column;
    position: relative;
}
.event-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.event-detail-image {
    width: 100%;
    display: block;
    border-radius: 6px;
    height: 196px;
}
.image-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
}
.event-detail {
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: #333;
}
.event-summary {
    padding: 12px 0px;
    background: #fff;
}
.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-title {
    color: #343434;
    font-size: 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 33.6px;
}
.book-now {
    background: #289f35;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.event-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 12px 0px;
    gap: 12px;
    align-self: stretch;
}
.event-detail-meta .venue {
    display: flex;
    gap: 4px;
    color: #54595f;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    width: 50%;
    justify-content: start;
    align-self: center;
}
.event-detail-meta .stats {
    display: flex;
    gap: 8px;
    width: 50%;
    justify-content: end;
}
.booking-percent,
.spots-remaining {
    display: flex;
    align-items: center;
    gap: 4px;
    border-right: 1px solid #eaecf0;
    padding-right: 12px;
}
.percent {
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}
.evet-detail-spots {
    text-align: center;
    color: #ec221f;
    font-size: 14px;
    font-weight: 600;
}

/* Sponsor & Details Section */
.sponsor-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.section-title {
    color: #4f5466;
    font-size: 14px;
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16.8px;
}
.gold-sponsor .sponsor-logos,
.event-details-info .details-info,
.included-section .included-items {
    display: flex;
    gap: 12px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
}
.divider {
    width: 1px;
    background: #eaecf0;
}
.price .amount {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.price .unit {
    font-size: 14px;
    font-weight: 400;
    color: #54595f;
}
.detail-divider {
    height: 1px;
    background: #eaecf0;
    margin-top: 12px;
}

/* Included Items */
.included-item img {
    display: flex;
    height: 48px;
    width: 48px;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.included-item {
    background: #f9f9fb;
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1f1f1f;
}

/* Event Description */
.event-description p {
    color: #54595f;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    line-height: 23.8px;
}

.location-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.location-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px;
}
.location-map {
    position: relative;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}
.map-image {
    width: 100%;
    display: block;
}
.map-overlay {
    position: absolute;
    top: 15px;
    left: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
}
.map-btn {
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #707070;
}
.map-btn-icon {
    position: relative;
    width: 14px;
    height: 14px;
}
.map-btn-icon .dot {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 4px;
    height: 4px;
    background: #707070;
    border-radius: 50%;
}

/* Partners & Sponsors Sections */
.partners-section,
.sponsors-section {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.partners-logos,
.sponsors-logos {
    display: flex;
    gap: 8px;
}
.partners-logos img,
.sponsors-logos img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* safa */
.sponsor-logos img {
    height: 48px;
    width: 200px;
    object-fit: contain;
    display: block;
}
.sponsor-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
}
.other-sponsors {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.other-sponsors img {
    height: 48px;
    width: 105px;
    object-fit: contain;
    display: block;
}
.other-sponsors-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-content: center;
}
.seperator {
    width: 1px;
    height: 168px;
    background: #eaecf0;
}
.gold-sponsor p {
    height: 87px;
    color: #54595f;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

@media screen and (max-width: 700px) {
    .sponsor-container {
        flex-direction: column;
        gap: 35px;
        align-items: center;

        margin-top: 12px;
    }
    .other-sponsors img {
        height: 73px;
        width: 116px;
    }
    .section-title {
        font-size: 18px;
        text-align: center;
    }
    .included-item img {
        width: 52px;
        height: 52px;
    }
    .event-description p {
        line-height: 160%;
        font-size: 16px;
    }
    .sponsor-section {
        gap: 40px;
    }
    .event-summary {
        padding: 20px 0px;
    }
    .venue-svg-style {
        width: 35px;
        height: 35px;
    }
}
