/* Design System Tokens */
:root {
    color-scheme: only light;
    --bg-color: #eeeeee;
    --circle-color: #adddfb;
    --accent-color: #ff7c05;
    --accent-hover: #e06b00;
    --text-primary: #111111;
    --text-secondary: #333333;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    font-family: var(--font-sans);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Full-width Container Wrapper */
.hero-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh + 110px);
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Navigation Bar */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px 0 80px;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: flex-end; /* Keeps the bottom elements aligned flush */
    padding: 0 80px;
    width: 100%;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: flex-end; /* Align bottom of columns */
    gap: 30px;
}

/* Left Column: Typography */
.hero-content {
    align-self: flex-start; /* Move headline higher, anchoring near the top-left */
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 140px; /* Shift text block rightwards relative to the logo */
    max-width: 660px; /* Adjusted from 580px to maintain the text wrapping width of 580px */
    z-index: 5;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: -0.015em;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-secondary);
    margin-bottom: 80px; /* Increased gap to sit the CTA button noticeably lower */
    max-width: 440px;
    letter-spacing: -0.01em;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    width: 170px;
    height: 52px;
    background-color: var(--accent-color);
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 124, 5, 0.15);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 124, 5, 0.25);
}

.cta-button:active {
    transform: translateY(0);
}

/* Right Column: Visual Portrait with overlapping circle */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Align image flush right */
    align-items: flex-end;
    height: 100%;
    min-height: 435px;
    width: fit-content; /* Set width to match the hero image */
    margin-left: auto; /* Push container to the right */
    margin-right: 0; /* Align with layout boundary for breathing room */
}

.blue-circle {
    position: absolute;
    width: clamp(525px, 46.5vw, 690px); /* Reduced by 1/4 for desktop */
    height: clamp(525px, 46.5vw, 690px);
    background-color: var(--circle-color);
    border-radius: 50%;
    bottom: -80px; /* Bleeds past the bottom of the viewport */
    left: 50%; /* Positioned center behind the hero image */
    right: auto;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-image {
    position: relative;
    display: block;
    height: 67.5vh; /* Reduced by 1/4 for desktop */
    max-height: 600px;
    width: auto;
    max-width: none;
    z-index: 4;
    margin-bottom: 0; /* Flush to the bottom of the container */
    pointer-events: none;
    transform: scale(1.12); /* Crop tighter to make figure feel dominant and close */
    transform-origin: bottom right;
}

.pattern-band {
    position: relative;
    width: 100%;
    height: 110px;
    background-image: url('assets/pattern-band.svg');
    background-size: auto 100%;
    background-repeat: repeat-x;
    z-index: 3;
    flex-shrink: 0;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .header {
        padding: 30px 50px 0 50px;
    }
    
    .hero-section {
        padding: 0 50px;
    }
    
    .hero-content {
        padding-left: 100px;
    }

    .hero-visual {
        margin-right: 0;
    }
    
    .blue-circle {
        width: 488px; /* Reduced by 1/4 for desktop */
        height: 488px;
        bottom: -60px;
        left: 50%; /* Positioned center behind the hero image */
        right: auto;
        transform: translateX(-50%);
    }
    
    .hero-image {
        height: 63.75vh; /* Reduced by 1/4 for desktop */
        max-height: 525px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 24px 30px 0 30px;
    }
    
    .hero-section {
        flex: none;
        padding: 0 30px 0 30px;
        align-items: flex-end;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        align-items: stretch;
    }
    
    .hero-content {
        align-self: flex-start;
        padding-top: 80px;
        padding-bottom: 20px;
        padding-left: 0; /* Reset desktop indentation for mobile stacked view */
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        max-width: 500px;
        margin-bottom: 40px; /* Reduced padding for compact layout on mobile */
    }
    
    .hero-visual {
        width: auto; /* Reset fit-content from desktop to allow full-width centering */
        min-height: 380px;
        height: 50vh;
        margin-right: -30px;
        margin-left: -30px;
        justify-content: center;
        align-items: flex-end;
        align-self: end;
    }
    
    .blue-circle {
        width: 85vw;
        height: 600px;
        bottom: -50px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image {
        height: 55vh;
        max-height: 440px;
        width: auto;
        max-width: none;
        transform: scale(1.08);
        transform-origin: bottom center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 20px 0 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-section {
        padding: 0 20px 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 140px;
        height: 44px;
        border-radius: 12px;
        font-size: 0.82rem;
    }
    
    .hero-visual {
        width: auto; /* Reset fit-content from desktop to allow full-width centering */
        margin-right: -20px;
        margin-left: -20px;
        min-height: 300px;
    }
    
    .blue-circle {
        width: 300px;
        height: 300px;
        bottom: -40px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .hero-image {
        height: 48vh;
        max-height: 350px;
    }
}

/* ============================================================
   GLASSMORPHISM SLIDE-IN NAVIGATION MENU
   All new rules — nothing below touches existing styles above.
   ============================================================ */

/* Overlay Backdrop (dim layer behind the panel) */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Slide-in Panel */
.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 85vw);
    height: 100dvh; /* Dynamic viewport height for mobile browser chrome */
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 56px 60px 56px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.nav-overlay.is-open {
    transform: translateX(0);
}

/* Close Button (top-right × icon) */
.nav-close-btn {
    position: absolute;
    top: 36px;
    right: 48px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-close-line {
    position: absolute;
    width: 26px;
    height: 2.5px;
    background-color: #f5f5f5;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.nav-close-line:first-child {
    transform: rotate(45deg);
}

.nav-close-line:last-child {
    transform: rotate(-45deg);
}

.nav-close-btn:hover .nav-close-line {
    background-color: var(--accent-color);
}

/* Hamburger → × transform when menu is open */
.menu-btn.is-open .menu-line:first-child {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-btn.is-open .menu-line:last-child {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Menu List */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3.5vh, 36px);
}

/* Menu Items */
.nav-item {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.2s ease;
    display: inline-block;
}

.nav-item:hover {
    color: var(--accent-color);
}

/* Staggered slide-in animation for menu items */
.nav-overlay.is-open .nav-menu li {
    animation: navItemIn 0.4s ease forwards;
    opacity: 0;
}

.nav-overlay.is-open .nav-menu li:nth-child(1) { animation-delay: 0.08s; }
.nav-overlay.is-open .nav-menu li:nth-child(2) { animation-delay: 0.13s; }
.nav-overlay.is-open .nav-menu li:nth-child(3) { animation-delay: 0.18s; }
.nav-overlay.is-open .nav-menu li:nth-child(4) { animation-delay: 0.23s; }
.nav-overlay.is-open .nav-menu li:nth-child(5) { animation-delay: 0.28s; }
.nav-overlay.is-open .nav-menu li:nth-child(6) { animation-delay: 0.33s; }
.nav-overlay.is-open .nav-menu li:nth-child(7) { animation-delay: 0.38s; }

@keyframes navItemIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive: Tighten panel padding on smaller screens */
@media (max-width: 480px) {
    .nav-overlay {
        padding: 70px 36px 50px 36px;
    }

    .nav-close-btn {
        top: 28px;
        right: 32px;
    }
}


/* ================================================================
   NEW HOMEPAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* ── Shared Utilities ─────────────────────────────────────────── */

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}

.section-subheading {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
}

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

.text-link {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.text-link:hover {
    color: var(--accent-hover);
}

.section-cta-wrap {
    margin-top: 48px;
    text-align: left;
}

/* ── Section 1: About ─────────────────────────────────────────── */

.about-section {
    background-color: var(--bg-color);
    width: 100%;
}

.about-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.about-body {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ── Section 2: Publications ──────────────────────────────────── */

.publications-section {
    background-color: #e4e4e4;
    width: 100%;
}

.section-header {
    margin-bottom: 0;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-top: 12px;
}

/* 5th book card visible only on large desktop */
.book-card--desktop-only {
    display: flex;
}

.book-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease;
}

.book-card:hover {
    transform: translateY(-6px);
}

.book-cover-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ccc;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.04);
}

.book-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.book-meta {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ── Section 3: Events ────────────────────────────────────────── */

.events-section {
    background-color: var(--bg-color);
    width: 100%;
}

.event-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-top: 36px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.event-card:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
}

.event-card-inner {
    padding: 48px 52px;
}

.event-meta-row {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.event-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.event-location {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.event-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.event-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.event-description {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 32px;
}

.event-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-cta:hover {
    color: var(--accent-hover);
}

/* ── Section 4: Wind Magazine ─────────────────────────────────── */

.wind-section {
    background-color: #111111;
    width: 100%;
}

.wind-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.wind-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 18px;
}

.wind-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}

.wind-body {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 480px;
}

.wind-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wind-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.wind-btn--filled {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

.wind-btn--filled:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.wind-btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.wind-btn--outline:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.wind-cover-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--circle-color);
    border-radius: 12px;
    max-width: 340px;
    margin-left: auto;
}

/* ── Section 5: News / Newsletter ─────────────────────────────── */

.news-section {
    background-color: var(--bg-color);
    width: 100%;
}

.news-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.news-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}

.news-subtext {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 220px;
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #fff;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 124, 5, 0.12);
}

.newsletter-btn {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* ================================================================
   RESPONSIVE — NEW SECTIONS
   ================================================================ */

@media (max-width: 1200px) {
    .section-container {
        padding: 80px 50px;
    }

    .about-inner {
        padding: 80px 50px;
    }

    .wind-inner {
        padding: 80px 50px;
    }

    .news-inner {
        padding: 80px 50px;
    }

    .book-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .book-card--desktop-only {
        display: none;
    }
}

@media (max-width: 992px) {
    .wind-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wind-cover-placeholder {
        margin: 0 auto;
        max-width: 280px;
    }

    .book-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card-inner {
        padding: 36px 32px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 60px 20px;
    }

    .about-inner {
        padding: 60px 20px;
    }

    .wind-inner {
        padding: 60px 20px;
    }

    .news-inner {
        padding: 60px 20px;
    }

    .book-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .event-card-inner {
        padding: 28px 20px;
    }

    .event-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .wind-buttons {
        flex-direction: column;
    }

    .wind-btn {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

/* ================================================================
   ABOUT PAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for About Page */
.about-header-wrapper {
    width: 100%;
    background-color: var(--bg-color);
}

/* ── Section 1: About the Centre ──────────────────────────────── */
.about-page-centre {
    background-color: var(--bg-color);
    width: 100%;
}

.about-page-centre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.about-page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.about-page-centre-right {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Section 2: About Ama Ata Aidoo ───────────────────────────── */

/* 2a — Biography */
.aidoo-bio-section {
    background-color: #e4e4e4;
    width: 100%;
}

.aidoo-bio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.aidoo-section-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 16px;
}

.aidoo-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.aidoo-body-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
}

/* 2b — Literary Legacy */
.aidoo-legacy-section {
    background-color: var(--bg-color);
    width: 100%;
}

.aidoo-legacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

/* 2c — Major Works */
.aidoo-works-section {
    background-color: #e4e4e4;
    width: 100%;
}

.aidoo-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.aidoo-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.work-category-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.work-category-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    display: inline-block;
}

.work-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.work-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* 2d — Pull Quote */
.aidoo-quote-section {
    background-color: #111111;
    width: 100%;
}

.aidoo-quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
}

.aidoo-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.aidoo-quote-attribution {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-style: normal;
    display: block;
}

/* ── Section 3: Leadership & Staff ────────────────────────────── */
.leadership-section {
    background-color: var(--bg-color);
    width: 100%;
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.leadership-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 48px;
    letter-spacing: -0.015em;
}

.director-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.director-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.director-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.director-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.director-bio {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.staff-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.staff-block-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.staff-block-body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ── Section 4: Join Our Community ────────────────────────────── */
.join-community-section {
    background-color: #111111;
    width: 100%;
}

.join-community-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.join-community-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.join-community-subtext {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.join-community-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.community-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.community-btn--filled {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

.community-btn--filled:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.community-btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.community-btn--outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ── Responsive Styling for About Page ────────────────────────── */
@media (max-width: 1200px) {
    .about-page-centre-container,
    .aidoo-bio-container,
    .aidoo-legacy-container,
    .aidoo-works-container,
    .leadership-container,
    .join-community-container {
        padding: 80px 50px;
    }

    .aidoo-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .about-page-centre-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .staff-blocks {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .director-card {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .aidoo-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aidoo-quote-container {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .about-page-centre-container,
    .aidoo-bio-container,
    .aidoo-legacy-container,
    .aidoo-works-container,
    .leadership-container,
    .join-community-container,
    .aidoo-quote-container {
        padding: 50px 20px;
    }

    .work-category-card {
        padding: 24px;
    }

    .director-card {
        padding: 24px;
    }

    .director-name {
        font-size: 1.6rem;
    }

    .join-community-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .community-btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   EVENTS PAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for Events Page */
.events-header-wrapper {
    width: 100%;
    background-color: #111111;
}

.events-header-wrapper .menu-line {
    background-color: #ffffff;
}

/* ── Section 1: Events Hero Banner ────────────────────────────── */
.events-hero-section {
    background-color: #111111;
    width: 100%;
}

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

.events-hero-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 16px;
}

.events-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.events-hero-subheading {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
}

.events-hero-details {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ── Section 2: Event Introduction ────────────────────────────── */
.events-intro-section {
    background-color: var(--bg-color);
    width: 100%;
}

.events-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.events-intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.events-intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-intro-body {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.events-intro-byline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.85;
}

/* ── Day Sections (Days 1, 2, 3) ──────────────────────────────── */
.events-day-section {
    width: 100%;
}

.events-day-one {
    background-color: #e4e4e4;
}

.events-day-two {
    background-color: var(--bg-color);
}

.events-day-three {
    background-color: #e4e4e4;
}

.events-day-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.day-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 16px;
}

.day-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 48px;
    letter-spacing: -0.015em;
}

.day-subblocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
}

.day-subblock {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.day-subblock:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.subblock-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.subblock-body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Day 3 Content Specifics */
.day-three-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.day-three-body {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.day-three-pullquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 28px;
    margin: 20px 0;
}

.inline-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.4;
    margin-bottom: 12px;
}

.inline-quote-attribution {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-style: normal;
    display: block;
}

/* ── Section 5: Pull Quote ────────────────────────────────────── */
.events-quote-section {
    background-color: #111111;
    width: 100%;
}

.events-quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
}

.events-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
}

/* ── Section 7: Closing Statement ─────────────────────────────── */
.events-closing-section {
    background-color: var(--bg-color);
    width: 100%;
}

.events-closing-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.events-closing-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}

.events-closing-body {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.events-closing-meta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    line-height: 1.6;
}

/* ── Section 8: Photo Grid Placeholder ────────────────────────── */
.events-photos-section {
    background-color: var(--bg-color);
    width: 100%;
}

.events-photos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.events-photos-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

.photo-placeholder-box {
    background-color: #d4d4d4;
    border-radius: 12px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.2s ease;
}

.photo-placeholder-box:hover {
    transform: scale(1.02);
    background-color: #cce0ee;
}

.photo-placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ── Responsive Styling for Events Page ───────────────────────── */
@media (max-width: 1200px) {
    .events-hero-container,
    .events-intro-container,
    .events-day-container,
    .events-closing-container,
    .events-photos-container {
        padding: 80px 50px;
    }
}

@media (max-width: 992px) {
    .events-intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .events-quote-container {
        padding: 60px 30px;
    }

    .day-subblock {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .events-hero-container,
    .events-intro-container,
    .events-day-container,
    .events-closing-container,
    .events-photos-container,
    .events-quote-container {
        padding: 50px 20px;
    }

    .day-subblock {
        padding: 24px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .photo-placeholder-box {
        height: 240px;
    }

    .day-three-pullquote {
        padding-left: 20px;
    }
}

/* ================================================================
   PUBLICATIONS PAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for Publications Page */
.publications-header-wrapper {
    width: 100%;
    background-color: #111111;
}

.publications-header-wrapper .menu-line {
    background-color: #ffffff;
}

/* ── Section 1: Publications Hero Banner ──────────────────────── */
.pub-hero-section {
    background-color: #111111;
    width: 100%;
}

.pub-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 80px;
    text-align: center;
}

.pub-hero-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 16px;
}

.pub-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.pub-hero-subtext {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Section 2: Books Grid ────────────────────────────────────── */
.pub-grid-section {
    background-color: var(--bg-color);
    width: 100%;
}

.pub-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.pub-grid-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.pub-grid-subheading {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 56px;
}

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

/* Book Card */
.pub-book-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.pub-book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.pub-book-cover-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #d4d4d4;
}

.pub-book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pub-book-card:hover .pub-book-cover {
    transform: scale(1.04);
}

.pub-book-body {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 0 0 12px 12px;
}

.pub-book-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 14px;
}

.pub-book-author-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pub-book-role {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pub-book-author {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ── Section 3: Pull Quote ────────────────────────────────────── */
.pub-quote-section {
    background-color: #111111;
    width: 100%;
}

.pub-quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
}

.pub-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
}

/* ── Section 4: Submit Your Work CTA ─────────────────────────── */
.pub-submit-section {
    background-color: #e4e4e4;
    width: 100%;
}

.pub-submit-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.pub-submit-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.pub-submit-subtext {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.pub-submit-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 124, 5, 0.2);
}

.pub-submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 124, 5, 0.3);
}

.pub-submit-btn:active {
    transform: translateY(0);
}

/* ── Responsive Styling for Publications Page ─────────────────── */
@media (max-width: 1200px) {
    .pub-hero-container,
    .pub-grid-container,
    .pub-submit-container {
        padding: 80px 50px;
    }

    .pub-quote-container {
        padding: 80px 50px;
    }
}

@media (max-width: 992px) {
    .pub-books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pub-book-cover-wrap {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .pub-hero-container,
    .pub-grid-container,
    .pub-submit-container,
    .pub-quote-container {
        padding: 50px 20px;
    }

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

    .pub-book-cover-wrap {
        height: 280px;
    }

    .pub-submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   WIND MAGAZINE PAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for Wind Magazine Page */
.wind-header-wrapper {
    width: 100%;
    background-color: #111111;
}

.wind-header-wrapper .menu-line {
    background-color: #ffffff;
}

/* ── Section 1: Wind Magazine Hero Banner ─────────────────────── */
.wind-hero-section {
    background-color: #111111;
    width: 100%;
}

.wind-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 80px;
    text-align: center;
}

.wind-hero-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 20px;
}

.wind-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.015em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wind-hero-subtext {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px auto;
}

.wind-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wind-hero-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease,
                border-color 0.2s ease, box-shadow 0.2s ease;
}

.wind-hero-btn--filled {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 14px rgba(255, 124, 5, 0.25);
}

.wind-hero-btn--filled:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 124, 5, 0.35);
}

.wind-hero-btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.wind-hero-btn--outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.wind-hero-btn:active {
    transform: translateY(0);
}

/* ── Section 2: Flipbook Embed ────────────────────────────────── */
.wind-flipbook-section {
    background-color: #1a1a1a;
    width: 100%;
}

.wind-flipbook-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
    text-align: center;
}

.wind-flipbook-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.wind-flipbook-subtext {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 36px;
}

.wind-flipbook-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    background-color: #000000;
    line-height: 0; /* removes inline-block gap under iframe */
}

.wind-flipbook-iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: none;
}

/* ── Section 3: About the Magazine ───────────────────────────── */
.wind-about-section {
    background-color: var(--bg-color);
    width: 100%;
}

.wind-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.wind-about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.wind-about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wind-about-body {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ── Section 4: Contribute CTA ───────────────────────────────── */
.wind-contribute-section {
    background-color: #111111;
    width: 100%;
}

.wind-contribute-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
}

.wind-contribute-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.wind-contribute-subtext {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.wind-contribute-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 124, 5, 0.25);
}

.wind-contribute-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 124, 5, 0.35);
}

.wind-contribute-btn:active {
    transform: translateY(0);
}

/* ── Responsive Styling for Wind Magazine Page ────────────────── */
@media (max-width: 1200px) {
    .wind-hero-container,
    .wind-flipbook-container,
    .wind-about-container,
    .wind-contribute-container {
        padding: 80px 50px;
    }
}

@media (max-width: 992px) {
    .wind-about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .wind-flipbook-iframe {
        height: 450px;
    }

    .wind-flipbook-container {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .wind-hero-container,
    .wind-flipbook-container,
    .wind-about-container,
    .wind-contribute-container {
        padding: 50px 20px;
    }

    .wind-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .wind-hero-btn {
        width: 100%;
        text-align: center;
    }

    .wind-flipbook-iframe {
        height: 400px;
    }

    .wind-contribute-btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   NEWS PAGE SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for News Page */
.news-header-wrapper {
    width: 100%;
    background-color: #111111;
}

.news-header-wrapper .menu-line {
    background-color: #ffffff;
}

/* ── Section 1: News Hero Banner ─────────────────────────────── */
.news-hero {
    background-color: #111111;
    width: 100%;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.news-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-hero-label {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.news-hero-title {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-hero-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Section 2: Coming Soon Block ───────────────────────────── */
.news-coming-soon {
    background-color: var(--bg-color);
    width: 100%;
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.news-coming-soon-container {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-coming-soon-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-coming-soon-text {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.news-coming-soon-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

/* ── Section 3: Subscribe Form ──────────────────────────────── */
.news-subscribe {
    background-color: #e4e4e4;
    width: 100%;
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.news-subscribe-container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.news-subscribe-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-subscribe-text {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.news-subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.news-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.news-input:focus {
    border-color: var(--accent-color);
}

.news-submit-btn {
    width: 100%;
    height: 52px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.news-submit-btn:hover {
    opacity: 0.9;
}

.news-submit-btn:active {
    transform: scale(0.98);
}

.news-subscribe-success {
    display: none;
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

.news-subscribe-success.is-active {
    display: block;
    animation: newsFadeIn 0.4s ease forwards;
}

@keyframes newsFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Section 4: Placeholder News Cards ──────────────────────── */
.news-cards-section {
    background-color: var(--bg-color);
    width: 100%;
    padding: 100px 80px;
    box-sizing: border-box;
}

.news-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-cards-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-color);
    margin: 0 0 8px 0;
    text-align: left;
}

.news-cards-subtitle {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0 0 40px 0;
    text-align: left;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.news-placeholder-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-placeholder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.news-card-image-placeholder {
    background-color: #d4d4d4;
    height: 200px;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

.news-card-label {
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.news-card-title-bar {
    background-color: #cccccc;
    height: 20px;
    border-radius: 4px;
    width: 80%;
    margin-bottom: 16px;
}

.news-card-body-bar {
    background-color: #e4e4e4;
    height: 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.news-card-body-bar--long {
    width: 100%;
}

.news-card-body-bar--short {
    width: 60%;
    margin-bottom: 0;
}

/* ── Media Queries for News Page ────────────────────────────── */
@media (max-width: 1024px) {
    .news-hero {
        padding: 120px 50px;
    }
    
    .news-coming-soon,
    .news-subscribe,
    .news-cards-section {
        padding: 100px 50px;
    }
    
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

    .news-coming-soon-title,
    .news-subscribe-title,
    .news-cards-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .news-hero {
        padding: 80px 20px;
    }
    
    .news-coming-soon,
    .news-subscribe,
    .news-cards-section {
        padding: 60px 20px;
    }
    
    .news-hero-title {
        font-size: 2.2rem;
    }
    
    .news-hero-subtext {
        font-size: 1rem;
    }

    .news-coming-soon-title,
    .news-subscribe-title,
    .news-cards-title {
        font-size: 1.8rem;
    }

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

/* ================================================================
   CONTACT PAGE & FOOTER SECTIONS
   All rules below are additive — nothing above is modified.
   ================================================================ */

/* Header Wrapper for Contact Page */
.contact-header-wrapper {
    width: 100%;
    background-color: #111111;
}

.contact-header-wrapper .menu-line {
    background-color: #ffffff;
}

/* ── Section 1: Contact Hero Banner ──────────────────────────── */
.contact-hero {
    background-color: #111111;
    width: 100%;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-label {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-hero-title {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Section 2: Contact Details + Form ──────────────────────── */
.contact-details-form-section {
    background-color: var(--bg-color);
    width: 100%;
    padding: 100px 80px;
    box-sizing: border-box;
}

.contact-details-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-col-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.3;
}

/* Details Column */
.contact-details-col {
    display: flex;
    flex-direction: column;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-info-text {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-link:hover {
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    color: var(--accent-color);
}

.contact-response-note {
    font-family: var(--font-sans);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Form Column */
.contact-form-col {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-input:focus {
    border-color: var(--accent-color);
}

.contact-textarea {
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 16px;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.contact-textarea:focus {
    border-color: var(--accent-color);
}

.contact-submit-btn {
    width: 100%;
    height: 52px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.contact-submit-btn:hover {
    opacity: 0.9;
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

.contact-success-msg {
    display: none;
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: left;
}

.contact-success-msg.is-active {
    display: block;
    animation: contactFadeIn 0.4s ease forwards;
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Section 3: Map Embed ───────────────────────────────────── */
.contact-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 0;
    box-sizing: border-box;
}

.contact-map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ── Section 4: Footer ──────────────────────────────────────── */
.site-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 80px 40px 80px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 24px;
}

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

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Title for links & contact column */
.footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0 0 24px 0;
}

/* Links Column */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Column */
.footer-contact-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

.footer-contact-links {
    margin: 0;
    line-height: 1.8;
}

.footer-link--contact {
    font-size: 0.95rem;
}

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright,
.footer-university {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Media Queries for Contact & Footer ──────────────────────── */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 120px 50px;
    }
    
    .contact-details-form-section {
        padding: 100px 50px;
    }

    .contact-details-form-container {
        gap: 50px;
    }

    .site-footer {
        padding: 80px 50px 40px 50px;
    }

    .footer-container {
        gap: 40px;
    }
}

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

    .contact-col-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .contact-details-form-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-title {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 20px;
    }
    
    .contact-details-form-section {
        padding: 60px 20px;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtext {
        font-size: 1rem;
    }

    .contact-col-title {
        font-size: 1.8rem;
    }

    .site-footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ── Additional Additive Classes for Site-Wide Fixes ────────── */
.event-photo-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.event-photo-img:hover {
    transform: scale(1.02);
}

.wind-cover-img {
    width: 100%;
    height: auto;
    max-width: 340px;
    margin-left: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.wind-cover-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .wind-cover-img {
        margin: 0 auto;
        max-width: 280px;
    }
}
