@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');


/* ============================================================
   TABLE OF CONTENTS
   This file holds only styles shared across multiple pages.
   Anything specific to a single page lives in that page's own
   CSS file (index.css, our_team.css, students_page.css, etc).

   1. Base Styles     — body, links
   2. Typography      — text helpers, color utilities
   3. Layout Utilities — display helpers
   4. Transitions      — fade/show/hide animation classes
   5. Header           — sticky nav bar (every page)
   6. Section Label    — small gold caption above section headings
   7. Promotion Banner — dark CTA block (index, students, clients)
   8. Glass Card        — frosted glass utility (about page)
   ============================================================ */


/* ============================================================
   1. BASE STYLES
   ============================================================ */

body {
    background-color: #E8E8E4;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #3c3c3c;
}

a:visited {
    color: inherit;
}


/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

.text {
    font-family: Georgia, serif;
}

.italize {
    font-style: italic;
}

/* Large bold headline used at the top of every page */
.hero-text {
    font-size: clamp(28px, 6vw, 60px);
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Brand color classes */
.gold {
    color: #B8922A;
}

.charcoal {
    color: #2D2D2D;
}

.stone {
    color: #888888;
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.inline {
    display: inline-block;
}

.block {
    display: block;
}

.hidden {
    display: none;
}


/* ============================================================
   4. TRANSITIONS
   Used by fade.js / header_fade.js to animate elements in/out
   ============================================================ */

.hidden-transition {
    opacity: 0;
    transition: opacity 0.25s;
}

.show-transition {
    opacity: 1;
    pointer-events: all;
}

.hide-transition {
    opacity: 0;
    pointer-events: none;
}


/* ============================================================
   5. HEADER
   Sticky navigation bar pinned to the top of every page
   ============================================================ */

.header-div {
    color: #000000;
    background-color: #E8E8E4;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    height: 96px;
    border-bottom: 1px solid #8888883e;
    width: 100%;
}

.club-name {
    font-size: 23px;
    margin-right: 20px;
    margin-left: -20px;
}

.club-logo {
    height: 100px;
    width: auto;
    margin-right: 50px;
}

.header-options {
    font-size: 20px;
    padding-right: 60px;
}

.header-links {
    margin-left: 50px;
}

/* Hide the nav links once the header gets too narrow to fit them */
@media (max-width: 850px) {
    .header-options {
        display: none;
    }
}


/* ============================================================
   6. SECTION LABEL
   Small gold caption shown above a heading. Used on the
   students, clients, and what-we-do pages.
   ============================================================ */

.wwd-label {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wwd-section-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8922A;
    margin-bottom: 10px;
}


/* ============================================================
   7. PROMOTION BANNER
   Dark full-width CTA block. Used on the index, students, and
   clients pages.
   ============================================================ */

.promotion-div {
    margin-top: 15px;
    background-color: #000000;
    height: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: clamp(26px, 5vw, 50px);
    flex-wrap: wrap;
    row-gap: 20px;
}

.promotion-text {
    margin-left: 100px;
    font-weight: bold;
    color: white;
}

.application-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d1c1c;
    border-radius: 10px;
    color: #B8922A;
    width: 200px;
    height: 50px;
    font-size: 20px;
    margin-left: 400px;
    border: 2px solid #8888884d;
}

.application-button:hover {
    cursor: pointer;
    color: #ffffff;
}

/* Below this width the 400px offset would push the button off-screen —
   fall back to a simple, evenly spaced row instead */
@media (max-width: 1300px) {
    .promotion-div {
        justify-content: center;
        column-gap: 40px;
    }

    .promotion-text {
        margin-left: 0;
    }

    .application-button {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .promotion-text {
        text-align: center;
    }
}


/* ============================================================
   8. GLASS CARD
   Frosted-glass effect used for the floating info panels
   on the about page.
   ============================================================ */

.glass {
    background-color: rgba(255, 255, 255, 0.627);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
