/*
  PRISMS AWARDS — AWARDS EVENING PAGE
*/

/* =====================================================================
   SLIDESHOW
   ===================================================================== */

.ae-slideshow {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 340px;
    overflow: hidden;
    background: var(--Background-Dark-1);
}

.ae-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.ae-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ae-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.ae-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(var(--Background-Dark-1-rgb), 0.1) 0%,
        rgba(var(--Background-Dark-1-rgb), 0.5) 80%,
        rgba(var(--Background-Dark-1-rgb), 1)   100%
    );
}

/* Arrows */
.ae-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--Background-Dark-1-rgb), 0.55);
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    user-select: none;
}

.ae-arrow:hover {
    background: rgba(var(--gold-rgb), 0.12);
    border-color: rgba(var(--gold-rgb), 0.5);
}

.ae-arrow-prev { left: 24px; }
.ae-arrow-next { right: 24px; }

/* Dots */
.ae-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ae-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.28);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ae-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* =====================================================================
   PAGE HEADER (shown below slideshow)
   ===================================================================== */

.ae-header {
    position: relative;
    z-index: 0;
    overflow: hidden;
    --text-ghost: #c7b4ff;
    padding: 72px 90px 56px;
    background: linear-gradient(150deg, var(--Background-Dark-1) 0%, var(--Background-Light-1) 60%, var(--Background-Light-2) 100%);
    border-bottom: 1px solid var(--Background-Light-2);
}

.ae-header::after {
    content: 'GALA';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11rem;
    font-weight: bold;
    font-style: italic;
    color: rgba(var(--Background-Light-3-rgb), 0.16);
    pointer-events: none;
    z-index: -1;
    line-height: 1;
    letter-spacing: -2px;
}

.ae-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin: 0 0 14px 0;
}

.ae-title {
    font-size: 5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 0.9;
    margin: 0 0 18px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-pale));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.ae-tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-ghost);
    margin: 0;
}

/* =====================================================================
   CONTENT — two-column: event card + editorial text
   ===================================================================== */

.ae-content {
    background: var(--Background-Dark-1);
    border-top: 1px solid var(--border-faint);
}

.ae-content-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 90px 100px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

/* Event details card */
.ae-event-card {
    background: linear-gradient(135deg, var(--Background-Flat) 0%, var(--Background-Light-1) 100%);
    border: 1px solid var(--border-default);
    border-radius: 4px;
    padding: 34px 28px;
    position: sticky;
    top: 30px;
}

.ae-event-card-label {
    font-size: 0.58rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 22px;
}

.ae-event-rule {
    width: 44px;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-mid));
    margin-bottom: 24px;
}

.ae-event-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-faint);
}

.ae-event-row:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
}

.ae-event-key {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-ghost);
}

.ae-event-val {
    font-size: 0.92rem;
    color: var(--gold-bright);
    font-weight: bold;
    line-height: 1.4;
}

.ae-event-sub {
    font-size: 0.72rem;
    color: var(--text-ghost);
    line-height: 1.4;
    margin-top: 2px;
}

.ae-ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    background: var(--gold);
    color: var(--Background-Dark-1);
    border: none;
    border-radius: 3px;
    font-family: 'Gotham', sans-serif;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}

.ae-ticket-btn:hover {
    background: var(--gold-pale);
    color: var(--Background-Dark-1) !important;
    text-decoration: none;
}

.ae-tickets-soon {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-ghost);
    font-style: italic;
    margin-top: 6px;
    padding: 12px 0;
}

/* Editorial text column */
.ae-text-col h2 {
    font-size: 1.6rem;
    font-weight: bold;
    font-style: italic;
    color: var(--gold-bright);
    margin: 0 0 20px;
    line-height: 1.2;
}

.ae-body-para {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.9;
    margin: 0 0 20px;
}

.ae-body-para a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.3);
    transition: color 0.18s;
    white-space: normal !important;
}

.ae-body-para a:hover {
    color: var(--gold-pale) !important;
}

.ae-body-para strong {
    color: var(--gold-bright);
}

.ae-subheading {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 36px 0 14px;
}

.ae-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ae-bullets li {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.ae-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--gold-mid-dark);
}

/* =====================================================================
   CONTENT — additional components
   ===================================================================== */

/* Section divider */
.ae-section-rule {
    height: 1px;
    background: var(--border-default);
    margin: 44px 0;
}

/* Notice / early-bird callout */
.ae-notice {
    background: linear-gradient(135deg, var(--Background-Contact-1) 0%, var(--Background-Contact-2) 100%);
    border: 1px solid var(--border-default);
    border-left: 3px solid var(--gold-dark);
    border-radius: 3px;
    padding: 18px 22px;
    margin: 0 0 28px;
}

.ae-notice p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

.ae-notice strong {
    color: var(--gold-bright);
}

/* Sub-eyebrow (used below section h2) */
.ae-eyebrow-sub {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-ghost);
    margin: -12px 0 22px;
}

/* Small body text variant */
.ae-body-small {
    font-size: 0.78rem;
    color: var(--text-ghost);
}

/* Pricing options list */
.ae-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ae-pricing-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 18px;
    background: var(--Background-Flat);
    border: 1px solid var(--border-faint);
    border-radius: 3px;
    transition: border-color 0.18s;
}

.ae-pricing-item:hover {
    border-color: var(--border-default);
}

.ae-pricing-num {
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: bold;
    min-width: 18px;
}

.ae-pricing-desc {
    font-size: 0.86rem;
    color: var(--text-body);
    flex: 1;
    line-height: 1.5;
}

.ae-pricing-price {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--gold-bright);
    white-space: nowrap;
}

/* Price breakdown cards */
.ae-price-breakdown {
    display: flex;
    gap: 12px;
    margin: 0 0 28px;
    flex-wrap: wrap;
}

.ae-price-component {
    flex: 1;
    min-width: 160px;
    background: var(--Background-Flat);
    border: 1px solid var(--border-default);
    border-top: 2px solid var(--gold-dark);
    border-radius: 3px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ae-price-comp-label {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.ae-price-comp-note {
    font-size: 0.68rem;
    color: var(--text-ghost);
    letter-spacing: 0.5px;
}

.ae-price-comp-amount {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    color: var(--gold);
    margin-top: 10px;
    line-height: 1;
}

.ae-price-comp-unit {
    font-size: 0.62rem;
    color: var(--text-ghost);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA button */
.ae-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 46px;
    background: var(--gold);
    color: var(--Background-Dark-1);
    border: none;
    border-radius: 3px;
    font-family: 'Gotham', sans-serif;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
}

.ae-cta-btn:hover {
    background: var(--gold-pale);
    color: var(--Background-Dark-1) !important;
    text-decoration: none;
}

/* Ghost-coloured body text (same font size as ae-body-para) */
.ae-body-ghost {
    color: var(--text-ghost);
}

/* CTA button row */
.ae-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Outline variant */
.ae-cta-btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
}

.ae-cta-btn--outline:hover {
    background: rgba(var(--gold-rgb), 0.08);
    color: var(--gold-pale) !important;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1100px) {
    .ae-header           { padding: 70px 60px 54px; }
    .ae-content-inner    { padding: 70px 60px 90px; gap: 60px; }
}

@media (max-width: 900px) {
    .ae-header::after    { display: none; }
    .ae-title            { font-size: 3.6rem; }
    .ae-content-inner    { grid-template-columns: 1fr; gap: 40px; padding: 50px 60px 80px; }
    .ae-event-card       { position: static; }
}

@media (max-width: 768px) {
    .ae-slideshow        { height: 42vh; }
    .ae-header           { padding: 50px 28px 40px; }
    .ae-title            { font-size: 2.8rem; }
    .ae-content-inner    { padding: 40px 28px 60px; }
    .ae-arrow            { width: 36px; height: 36px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .ae-title            { font-size: 2.2rem; }
    .ae-slideshow        { height: 35vh; }
}
