/* ========================================
   EVENT DETAILS PAGE STYLES
   ======================================== */

.event-details-page {
    background-color: #F0EBE5;
    /* Beige background */
    min-height: 100vh;
}

/* Reuse Hero Styles from Events Page (or redefine if needed) */
.event-hero {
    position: relative;
    height: 400px;
    background-image: url('../images/event-hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.event-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.event-hero-title {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Intro */
.event-intro {
    padding: 4rem 0 3rem;
    text-align: center;
}

.event-intro-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-title-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    font-weight: 600;
}

/* Main Section */
.event-main-section {
    padding-bottom: 6rem;
}

/* Details Card */
.event-details-card {
    display: flex;
    background-color: #fff;
    /* White bg for the card part? Design looks like image + white box */
    /* Actually design shows image left, white box right, sitting on beige bg */
    margin-bottom: 4rem;
    border: 1px solid #ccc;
    /* Subtle border */
}

.event-details-image {
    flex: 1;
    min-height: 500px;
}

.event-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-details-box {
    flex: 1;
    background-color: var(--color-form-bg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #00000080;
}

.details-box-title {
    font-family: var(--font-heading);
    color: var(--color-title-text);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.details-box-desc {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-title-text);
    margin-bottom: 2rem;
    line-height: 1;
}

.event-info-group {
    margin-bottom: 1.5rem;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-title-text);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-value {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--color-title-text);
    line-height: 1;
    margin: 0px;
}

.btn-book-spot {
    display: block;
    width: 90%;
    background-color: var(--color-event-details-btn-bg);
    /* Dark button */
    color: var(--color-event-details-btn-text);
    text-align: center;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.btn-book-spot:hover {
    background-color: var(--color-event-details-btn-bg);
    color: var(--color-event-details-btn-text);
}

/* Long Description */

.event-long-description p {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-black);
    line-height: 1;
}

/* Highlights */

.highlights-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-title-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 5rem;
}

.highlights-list-wrapper ul {
    list-style: none;
    padding: 0;
}

.highlights-list-wrapper li {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--color-black);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1;
}

.highlights-list-wrapper li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .event-details-card {
        flex-direction: column;
    }

    .event-details-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .event-hero-title {
        font-size: 2.2rem;
    }

    .event-hero-subtitle {
        font-size: 1.2rem;
    }

    .event-intro-text {
        font-size: 1.5rem;
        padding: 0 1rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .details-box-title {
        font-size: 2.5rem;
    }

    .event-details-box {
        padding: 2rem;
    }

    .details-box-desc {
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .info-label {
        font-size: 1.2rem;
    }

    .info-value {
        font-size: 1.1rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .event-long-description p {
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0;
        margin-bottom: 1rem;
    }

    .highlights-list-wrapper li {
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .highlights-title {
        font-size: 1.8rem;
        margin-top: 3rem;
    }

    .highlights-list li {
        font-size: 1.1rem;
        line-height: 1.6;
        letter-spacing: 0;
        margin-bottom: 1rem;
    }

    .btn-book-spot {
        font-size: 1.2rem;
    }
}