
/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--royal-primary),
            #151515
        );

    color: var(--white);

    text-align: center;
}


.page-hero .section-container {
    max-width: 850px;
}


.page-hero .section-label {
    color: var(--royal-gold-light);
}


.page-hero h2 {
    margin: 12px 0 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        36px,
        6vw,
        64px
    );

    line-height: 1.1;
}


.page-hero p {
    max-width: 680px;

    margin: 0 auto;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   ALL EVENTS
========================================= */

.all-events-section {
    padding: 90px 0;

    background: #faf8f1;
}


.all-events-section
.section-heading {
    margin-bottom: 45px;
}


/* =========================================
   EVENT DETAILS LINK
========================================= */

.event-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: var(--royal-primary);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.event-read-more:hover {
    color: var(--royal-gold);

    gap: 12px;
}


/* =========================================
   EVENTS PAGE MOBILE
========================================= */

@media (max-width: 700px) {

    .page-hero {
        padding: 65px 20px;
    }


    .page-hero h2 {
        font-size: 38px;
    }


    .page-hero p {
        font-size: 14px;
    }


    .all-events-section {
        padding: 65px 0;
    }

}

/* =========================================
   EVENT DETAIL PAGE
========================================= */

.event-detail-section {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #faf8f1 0%,
            #ffffff 100%
        );

    min-height: 70vh;
}


.event-detail-wrapper {
    max-width: 1000px;

    margin: 0 auto;
}


/* =========================================
   BACK LINK
========================================= */

.event-back-link {
    display: inline-flex;

    align-items: center;

    margin-bottom: 35px;

    color: var(--royal-primary);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.event-back-link:hover {
    color: var(--royal-gold);

    transform: translateX(-4px);
}


/* =========================================
   EVENT HEADER
========================================= */

.event-detail-header {
    margin-bottom: 35px;
}


.event-detail-type {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--royal-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.event-detail-header h1 {
    max-width: 850px;

    margin-bottom: 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #252525;

    font-size: clamp(
        38px,
        6vw,
        64px
    );

    line-height: 1.08;
}


.event-detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    color: #777;

    font-size: 13px;
}


/* =========================================
   EVENT IMAGE
========================================= */

.event-detail-image {
    width: 100%;

    max-height: 600px;

    overflow: hidden;

    margin-bottom: 40px;

    background: #ddd;
}


.event-detail-image img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 600px;

    object-fit: cover;
}


/* =========================================
   EVENT BODY
========================================= */

.event-detail-body {
    display: grid;

    grid-template-columns:
        260px 1fr;

    gap: 50px;

    padding: 40px 0;

    border-top: 1px solid #e5e5e5;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   DATE
========================================= */

.event-detail-date {
    display: flex;

    flex-direction: column;

    align-self: start;

    padding: 25px;

    border-left: 4px solid
        var(--royal-gold);

    background: var(--white);
}


.event-detail-date span {
    margin-bottom: 8px;

    color: var(--royal-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.event-detail-date strong {
    color: #333;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    line-height: 1.4;
}


/* =========================================
   DESCRIPTION
========================================= */

.event-detail-description h2 {
    margin-bottom: 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #252525;

    font-size: 30px;
}


.event-detail-description p {
    color: #666;

    font-size: 16px;

    line-height: 1.9;
    
}


/* =========================================
   ACTION
========================================= */

.event-detail-action {
    margin-top: 35px;
}


/* =========================================
   LOADING
========================================= */

.event-detail-loading {
    padding: 100px 20px;

    color: #777;

    text-align: center;

    font-size: 14px;
}


/* =========================================
   ERROR
========================================= */

.event-detail-error {
    max-width: 650px;

    margin: 80px auto;

    text-align: center;
}


.event-detail-error > span {
    color: var(--royal-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.event-detail-error h1 {
    margin: 15px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
}


.event-detail-error p {
    margin-bottom: 25px;

    color: #777;

    line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .event-detail-section {
        padding: 60px 20px;
    }


    .event-detail-header h1 {
        font-size: 38px;
    }


    .event-detail-body {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px 0;
    }


    .event-detail-date {
        max-width: 100%;
    }


    .event-detail-description h2 {
        font-size: 26px;
    }


    .event-detail-description p {
        font-size: 15px;
    }


    .event-detail-image {
        margin-bottom: 30px;
    }

}




/* =========================================
   AGBOR KINGDOM
   EVENT SOCIAL SHARING
========================================= */

.single-event-share {

    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid rgba(0, 0, 0, 0.12);

}


.single-event-share-heading {

    margin-bottom: 22px;

}


.single-event-share-label {

    display: block;

    margin-bottom: 8px;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.14em;

    color: #9b7b3e;

}


.single-event-share-heading h3 {

    margin: 0;

    font-family: Georgia, serif;

    font-size: 1.5rem;

    font-weight: 600;

    color: #1f1f1f;

}


/* =========================================
   SHARE BUTTONS
========================================= */

.single-event-share-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.single-event-share-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 130px;

    padding: 13px 18px;

    border: 1px solid #d6d0c4;

    border-radius: 3px;

    background: #ffffff;

    color: #222222;

    font-size: 0.9rem;

    font-weight: 600;

    font-family: inherit;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.single-event-share-button:hover {

    transform: translateY(-2px);

}


.single-event-share-button .share-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 22px;

    height: 22px;

    font-size: 1rem;

    font-weight: 700;

}


/* =========================================
   WHATSAPP
========================================= */

.single-event-share-button.whatsapp:hover {

    background: #25D366;

    border-color: #25D366;

    color: #ffffff;

}


/* =========================================
   FACEBOOK
========================================= */

.single-event-share-button.facebook:hover {

    background: #1877F2;

    border-color: #1877F2;

    color: #ffffff;

}


/* =========================================
   X / TWITTER
========================================= */

.single-event-share-button.twitter:hover {

    background: #111111;

    border-color: #111111;

    color: #ffffff;

}


/* =========================================
   COPY LINK
========================================= */

.single-event-share-button.copy:hover {

    background: #9b7b3e;

    border-color: #9b7b3e;

    color: #ffffff;

}


/* =========================================
   SHARE COUNT
========================================= */

.single-event-share-count {

    margin-top: 22px;

    font-size: 0.85rem;

    color: #777777;

}


.single-event-share-count strong {

    margin: 0 3px;

    color: #9b7b3e;

    font-size: 1rem;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .single-event-share-buttons {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

    }


    .single-event-share-button {

        width: 100%;

        min-width: 0;

        padding: 13px 10px;

    }

}


