/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Top Bar ── */
.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    flex-shrink: 0;
}

.top-bar-separator {
    color: #555;
    margin: 0 4px;
    user-select: none;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar a:hover svg {
    fill: #fff;
}

/* ── Main Navigation ── */
.main-nav {
    background-color: #fff;
    padding: 0 0;
    border-bottom: 1px solid #e8e8e8;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* ── Nav Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.3px;
    padding: 4px 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #000;
}

/* ── Search Icon ── */
.nav-search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-search button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.25s ease;
}

.nav-search button:hover {
    color: #c9a84c;
}

.nav-search button svg {
    width: 18px;
    height: 18px;
}

/* ── Mobile Toggle ── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #333;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        /* push toggle to the right so it sits beside the search button */
        margin-left: auto;
    }

    .nav-search {
        margin-left: 8px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        gap: 0;
        border-bottom: 1px solid #e8e8e8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        z-index: 100;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px 24px;
        width: 100%;
        text-align: left;
    }

    .main-nav .container {
        position: relative;
    }
}

/* ══════════════════════════════════════
   Hero Slider
   ══════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slides {
    width: 100%;
    height: 100%;
}

/* ── Individual Slide ── */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* ── Slide Content ── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-tag-accent {
    width: 4px;
    height: 28px;
    background: linear-gradient(to bottom, #bababa, #000);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-tag-text {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    max-width: 520px;
    margin-bottom: 32px;
    /* Keeps the copy readable wherever it falls on the hero photo. */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: transparent;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ── Vertical Dots ── */
.hero-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    border-color: #fff;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(1, 22, 20, 0.3);
}

/* ── Navigation Arrows ── */
.hero-arrows {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.hero-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

/* ── Hero Responsive ── */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-heading {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-dots {
        right: 16px;
    }

    .hero-arrows {
        right: 16px;
        bottom: 20px;
    }
}

/* ══════════════════════════════════════
   Featured Projects
   ══════════════════════════════════════ */
.featured-projects {
    padding: 80px 0;
    background-color: #fff;
}

.featured-projects .container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Section Header ── */
.fp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.fp-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

.fp-nav {
    display: flex;
    gap: 8px;
}

.fp-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: transparent;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.fp-arrow:hover {
    border-color: #000;
    color: #000;
}

.fp-arrow svg {
    width: 18px;
    height: 18px;
}

/* ── Projects Slider ── */
.fp-slider {
    position: relative;
}

.fp-slide {
    display: none;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: start;
}

.fp-slide.active {
    display: grid;
    animation: fpFadeIn 0.5s ease;
}

@keyframes fpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Image ── */
.fp-image-wrapper {
    position: relative;
    border-left: 4px solid #000000;
    padding-left: 0;
}

.fp-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ── Info ── */
.fp-info {
    padding-top: 10px;
}

.fp-quote {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.fp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.fp-counter {
    font-size: 14px;
    color: #999;
}

.fp-counter-current {
    color: #000;
    font-weight: 600;
}

.fp-see-all {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: color 0.25s ease;
}

.fp-see-all:hover {
    color: #000;
}

.fp-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.fp-location {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

/* ── Featured Projects Responsive ── */
@media (max-width: 768px) {
    .featured-projects {
        padding: 50px 0;
    }

    .fp-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fp-quote {
        font-size: 20px;
    }
}

.fp-quote-sub {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.fq-text {
    font-size: 13px;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   Our Departments
   ══════════════════════════════════════ */
.departments {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.departments .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.dept-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 12px;
}

.dept-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* ── Card Grid ── */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.dept-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dept-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.dept-card-img {
    padding: 20px 20px 0;
}

.dept-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.dept-card-body {
    padding: 20px;
}

.dept-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.dept-card-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

.dept-card-list {
    list-style: none;
    padding: 0;
}

.dept-card-list li {
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
}

.dept-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #000000;
    border-radius: 50%;
}

/* ── Departments Responsive ── */
@media (max-width: 768px) {
    .departments {
        padding: 50px 0;
    }

    .dept-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .dept-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ══════════════════════════════════════
   Partner CTA Banner
   ══════════════════════════════════════ */
.partner-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.partner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.partner-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.partner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.partner-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgb(255, 255, 255);
}

.partner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-btn:hover {
    background: #000;
    color: #fff;
}

/* ── Partner CTA Responsive ── */
@media (max-width: 768px) {
    .partner-cta {
        padding: 50px 0;
    }

    .partner-cta .container {
        padding: 0 24px;
    }

    .partner-content {
        flex-direction: column;
        text-align: center;
    }

    .partner-heading {
        font-size: 24px;
    }
}

/* ══════════════════════════════════════
   Upcoming Events
   ══════════════════════════════════════ */
.events {
    padding: 80px 0;
    background-color: #fff;
}

.events .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.events-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 12px;
}

.events-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

/* ── Event Card ── */
.event-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.event-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

/* Flyers arrive in all shapes, and they are too text-heavy to crop. The whole
   poster is shown, and a blurred copy of it fills the leftover space so the
   card reads as designed rather than as grey bars. */
.event-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--flyer);
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.8);
    transform: scale(1.15);
}

.event-card-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.event-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.event-card-date,
.event-card-venue {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    line-height: 1.6;
}

.event-card-status {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-top: 12px;
    margin-bottom: 12px;
}

.event-card-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid #1a1a1a;
    border-radius: 30px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.event-card-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ── Events Responsive ── */
@media (max-width: 768px) {
    .events {
        padding: 50px 0;
    }

    .events-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .event-card {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════
   Footer
   ══════════════════════════════════════ */
.footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding-top: 60px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

/* ── Logo Column ── */
.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* ── Links Column ── */
.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

.footer-links-grid ul {
    list-style: none;
    padding: 0;
}

.footer-links-grid li {
    margin-bottom: 10px;
}

.footer-links-grid a {
    font-size: 12px;
    color: #fff;
    transition: color 0.25s ease;
}

.footer-links-grid a:hover {
    color: #000;
}

/* ── Follow Column ── */
.footer-follow-text {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: #000;
    color: #000;
    background: rgba(26, 154, 138, 0.1);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

/* ── Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 12px;
    color: #ffffff;
}

/* ── Footer Responsive ── */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* ══════════════════════════════════════
   Event Detail Page (event.html)
   Moved verbatim from event.html's inline <style>, order preserved.
   No selector here is defined elsewhere in this file, so the cascade
   behaves exactly as it did when these rules were inline.
   ══════════════════════════════════════ */

.event-detail-page {
    padding: 120px 60px 80px;
}

.event-banner {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 36px;
    background: #f0f0f0;
}

/* Show the flyer whole and blur a copy of it behind, rather than
   cropping the bottom off a portrait poster. */
.event-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--flyer);
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.8);
    transform: scale(1.15);
}

.event-banner img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.event-detail-main h1 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-theme-tag {
    display: inline-block;
    background: rgba(26, 154, 138, 0.1);
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.event-meta-item svg {
    width: 18px;
    height: 18px;
    color: #000;
    flex-shrink: 0;
}

.event-description {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.event-speakers-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.speakers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speaker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f8f8f8;
    border-radius: 10px;
}

.speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.speaker-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.speaker-info p {
    font-size: 12px;
    color: #888;
}

/* ── Sidebar: Ticket Card ── */
.ticket-sidebar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.ticket-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ticket-option:last-child {
    border-bottom: none;
}

.ticket-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.ticket-option-detail {
    font-size: 12px;
    color: #888;
}

.ticket-option-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.ticket-option-sold {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
}

.ticket-sidebar .back-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
}

.ticket-sidebar .back-link:hover {
    color: #000;
}

/* ── Loading & Error ── */
.event-loading {
    text-align: center;
    padding: 80px 20px;
    color: #aaa;
    font-size: 15px;
}

@media (max-width: 768px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-banner {
        height: 280px;
    }

    .event-detail-main h1 {
        font-size: 24px;
    }

    .ticket-sidebar {
        position: static;
    }
}

/* ── Ticket Selector ── */
.ticket-option {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ticket-option:last-of-type {
    border-bottom: none;
}

.ticket-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 16px;
}

.ticket-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: #000;
    color: #000;
}

.qty-val {
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0 0;
    margin-top: 8px;
    border-top: 1.5px solid #eee;
    color: #1a1a1a;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin-top: 16px;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #158578;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ══════════════════════════════════════
   Page Banner (inner pages)
   ══════════════════════════════════════ */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 110px 0 90px;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.page-banner .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-banner-heading {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    color: #888;
}

.breadcrumb-current {
    color: #fff;
    font-weight: 600;
}

/* ══════════════════════════════════════
   About - Intro / Story
   ══════════════════════════════════════ */
.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-image {
    border-radius: 10px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.about-intro-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-intro-lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-intro-body {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #000;
    color: #fff;
    transform: translateX(4px);
}

/* ══════════════════════════════════════
   About - Mission / Vision / Approach
   ══════════════════════════════════════ */
.about-pillars {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-pillars .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.pillar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 36px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    margin-bottom: 22px;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pillar-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ══════════════════════════════════════
   About - What We Do
   ══════════════════════════════════════ */
.about-work {
    padding: 80px 0;
    background-color: #fff;
}

.about-work .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: left;
}

.work-item {
    padding-top: 22px;
    border-top: 2px solid #1a1a1a;
}

.work-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.work-item-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ── About Responsive ── */
@media (max-width: 768px) {

    .page-banner {
        padding: 70px 0 55px;
    }

    .page-banner-heading {
        font-size: 28px;
    }

    .about-intro,
    .about-pillars,
    .about-work {
        padding: 50px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro-heading {
        font-size: 24px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ══════════════════════════════════════
   Shared Page Intro (inner pages)
   ══════════════════════════════════════ */
.page-intro {
    padding: 70px 0 10px;
    background-color: #fff;
}

.page-intro .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-intro-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

/* ══════════════════════════════════════
   Departments - Detail Rows
   ══════════════════════════════════════ */
.dept-detail {
    padding: 70px 0;
    background-color: #fff;
}

.dept-detail-alt {
    background-color: #f9f9f9;
}

.dept-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dept-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dept-detail-grid.reverse .dept-detail-image {
    order: 2;
}

.dept-detail-image {
    border-radius: 10px;
    overflow: hidden;
}

.dept-detail-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.dept-detail-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.dept-detail-body {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.dept-detail-sub {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.dept-detail .dept-card-list {
    margin-bottom: 8px;
}

/* ══════════════════════════════════════
   Events - Past Events
   ══════════════════════════════════════ */
.past-events {
    background-color: #f9f9f9;
    padding-top: 60px;
}

.event-card-past .event-card-img img {
    filter: grayscale(100%);
    opacity: 0.85;
}

.event-card-past:hover .event-card-img img {
    filter: grayscale(0);
    opacity: 1;
}

/* ══════════════════════════════════════
   Membership - Networks & Steps
   ══════════════════════════════════════ */
.join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.join-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 36px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.join-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.join-card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.step-item {
    padding-top: 22px;
    border-top: 2px solid #1a1a1a;
}

.step-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #ddd;
    line-height: 1;
    margin-bottom: 12px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.membership-note {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.8;
    color: #888;
    font-style: italic;
}

/* ══════════════════════════════════════
   Contact - Details & Form
   ══════════════════════════════════════ */
.contact-section {
    padding: 70px 0 80px;
    background-color: #fff;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item-text h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888;
    margin-bottom: 6px;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.contact-socials-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 14px;
}

.contact-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.contact-social-link svg {
    width: 16px;
    height: 16px;
}

/* ── Form ── */
.contact-form-wrap {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
}

.contact-form-heading {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

/* ── Radio groups (membership form) ── */
.form-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-group-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

/* Higher specificity than `.form-field label` so radio options do not pick up
   the uppercase/bold field-label styling. */
.form-field .radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: #333;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    accent-color: #c9a84c;
    cursor: pointer;
    margin: 0;
}

.form-submit {
    display: inline-block;
    padding: 12px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #000;
}

.form-status {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
    min-height: 18px;
}

.form-status.error {
    color: #e74c3c;
}

.form-status.success {
    color: #1a1a1a;
}

/* ── Inner Pages Responsive ── */
@media (max-width: 768px) {

    .page-intro {
        padding: 45px 0 5px;
    }

    .page-intro-heading {
        font-size: 22px;
    }

    .dept-detail,
    .contact-section {
        padding: 45px 0;
    }

    .dept-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dept-detail-grid.reverse .dept-detail-image {
        order: 0;
    }

    .dept-detail-heading {
        font-size: 22px;
    }

    .join-grid,
    .steps-grid,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        gap: 24px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 26px 20px;
    }

    .radio-group-cols {
        grid-template-columns: 1fr 1fr;
    }

    .contact-heading {
        font-size: 22px;
    }
}