﻿:root{
  --brand-1:#103b5c;    /* deep navy */
  --brand-2:#d6a300;    /* accent gold */
  --brand-3:#0d2030;    /* header bg */
  --ink:#0f172a;        /* text */
  --muted:#5b6b7b;      /* muted text */
  --surface:#ffffff;    /* cards */
  --bg:#f5f7fb;         /* page background */
  --ring: rgba(16,59,92,.25);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif; color:var(--ink); background:var(--bg);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.imgHome {
    max-width: 100%;
    display: block;
    width: 700px;
}

.caption {
    font-style:italic;
    font-size:12px;
    padding:10px;
}

/* Top utility bar */
.utility{
  background:var(--brand-3); color:#cbd5e1; font-size:12px;
}
.container{max-width:1200px; margin:0 auto; padding:0 20px}
.utility .container{display:flex; gap:18px; align-items:center; justify-content:flex-end; height:36px}
.utility a {
    color: #fff; /* or your brand color */
    font-size: 18px;
    margin-left: 12px;
    transition: color 0.2s ease;
}

    .utility a:hover {
        color: #ffd700; /* subtle hover color */
    }

/* Header */
header{
  background:#fff; position:sticky; top:0; z-index:50; box-shadow:0 1px 0 rgba(15,23,42,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; height:120px}
.brand{display:flex; align-items:center; gap:14px}
.brand-logo img{height:110px; width:auto}
.brand h1{font-size:18px; line-height:1.1; margin:0}
.brand h1 span{display:block; color:var(--muted); font-weight:600; font-size:12px}

nav ul{display:flex; gap:26px; list-style:none; padding:0; margin:0; align-items:center}
nav a {
    font-weight: 600;
    font-size: 30px;
}
nav a.active, nav a:hover{color:var(--brand-1)}

.search-btn{width:38px; height:38px; border-radius:50%; display:grid; place-items:center; border:1px solid rgba(2,6,23,.08)}

/* Mobile nav */
.hamburger{display:none}
@media (max-width: 900px){
  nav ul{display:none}
  .hamburger{display:grid; place-items:center; width:42px; height:42px; border:1px solid rgba(2,6,23,.08); border-radius:12px}
}

/* Hero (J&J-style) */
.hero{position:relative; overflow:hidden; background:#0c1a27}
.slides{position:relative}
.slide {
    min-height: 62vh;
    display: grid;
    align-items: center;
    color: #fff;
    background: linear-gradient( to bottom right, rgba(16,59,92,.9), rgba(16,59,92,.35) ), url('https://cdn.pixabay.com/photo/2023/05/26/18/04/radio-8019931_960_720.jpg?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}
.slide-inner{max-width:1100px; margin:0 auto; padding:80px 20px}
.eyebrow{letter-spacing:.12em; text-transform:uppercase; font-weight:800; color:#e2e8f0}
.hero h2{font-size:clamp(32px,5vw,56px); line-height:1.05; margin:10px 0 12px; font-weight:800}
.hero p{font-size:18px; max-width:720px; opacity:.95}
.cta{display:inline-flex; align-items:center; gap:10px; margin-top:22px; background:var(--brand-2); color:#171717; font-weight:800; padding:14px 20px; border-radius:999px; box-shadow:0 10px 20px rgba(214,163,0,.25)}
.cta:hover{filter:brightness(.95)}

.dots{position:absolute; left:50%; bottom:18px; transform:translateX(-50%); display:flex; gap:8px}
.dot{width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.6)}
.dot.active{background:#fff}

/* Section heading */
.section{padding:56px 0}
.section.white{background:#fff}
.section .container{max-width:1100px}
.heading{text-align:center; margin-bottom:26px}
.heading h3{font-size:28px; margin:6px 0}
.rule{width:120px; height:4px; background:linear-gradient(90deg,var(--brand-2),#f7e7a9); margin:0 auto 8px; border-radius:999px}

/* Triple icon buttons */
.pill-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:24px}
@media (max-width: 800px){.pill-grid{grid-template-columns:1fr}}
.pill{
  background:#fff; border-radius:999px; padding:18px 22px; display:flex; align-items:center; gap:14px; box-shadow:0 10px 20px rgba(2,6,23,.06), inset 0 0 0 1px rgba(2,6,23,.06);
}
.pill .icon{width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background:radial-gradient( 80% 80% at 30% 30%, #fff, #e9edf3 ); border:1px solid rgba(2,6,23,.06)}
.pill strong{font-size:16px}
.pill span{display:block; font-size:13px; color:var(--muted)}

/* Content blocks */
.grid{display:grid; grid-template-columns:2fr 1fr; gap:28px}
@media (max-width: 1000px){.grid{grid-template-columns:1fr}}
.card{background:var(--surface); border-radius:var(--radius); box-shadow:0 15px 35px rgba(2,6,23,.08); overflow:hidden}
.card .body{padding:22px}
.news-list{display:grid; gap:14px}
.news-item{display:grid; gap:6px; padding:14px; border-radius:12px; background:linear-gradient(#ffffff,#fafbff); border:1px solid rgba(2,6,23,.06)}
.news-item time{color:var(--muted); font-size:12px}

.links{display:flex; gap:16px; flex-wrap:wrap; margin-top:8px}
.chip{padding:8px 12px; border-radius:999px; background:#eef2f7; border:1px solid rgba(2,6,23,.06); font-weight:600}

footer{margin-top:60px; background:#0b1521; color:#cbd5e1}
footer .container{display:grid; align-items:center; gap:12px; padding:24px 20px}
footer small{opacity:.85}

/* Page hero */
.page-hero {
    background: linear-gradient(180deg,#06121c,#0d2030);
    color: #e2e8f0;
    padding: 40px 0
}

    .page-hero .container {
        max-width: 1100px
    }

    .page-hero h1 {
        margin: 0 0 6px;
        font-size: 36px;
        font-weight: 800
    }

    .page-hero p {
        margin: 6px 0 0
    }


/* People / leadership cards */
.people-list {
    display: grid;
    gap: 20px
}

.person-card {
    display: flex;
    gap: 22px;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(2,6,23,.08);
    border: 1px solid rgba(2,6,23,.06)
}

    .person-card .avatar {
        flex: 0 0 auto
    }

        .person-card .avatar img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            background: #e5eaf2;
            border: 4px solid #fff;
            box-shadow: 0 6px 18px rgba(2,6,23,.08)
        }

    .person-card .content {
        flex: 1 1 auto
    }

    .person-card header {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap
    }

    .person-card h2 {
        margin: 0;
        font-size: 22px
    }

.callsign {
    font-weight: 800;
    color: var(--brand-1)
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--brand-2);
    color: #171717;
    font-weight: 800;
    font-size: 12px
}

.badge-outline {
    background: transparent;
    color: var(--brand-1);
    border: 1.5px solid rgba(16,59,92,.35)
}

.lead {
    margin: .5rem 0 0.75rem;
    color: #334155
}


.person-card details {
    margin-top: 6px
}

    .person-card details summary {
        list-style: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: var(--brand-1)
    }

        .person-card details summary::-webkit-details-marker {
            display: none
        }

    .person-card details[open] summary span::after {
        content: " ▲"
    }

    .person-card details:not([open]) summary span::after {
        content: " ▼"
    }

.details-body {
    padding: 10px 0 0;
    color: #374151
}


.person-card .contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.person-card .chip {
    background: #eef2f7
}


@media (max-width: 800px) {
    .person-card {
        flex-direction: column;
        align-items: flex-start
    }

        .person-card .avatar img {
            width: 110px;
            height: 110px
        }
}




/* Assistant Directors grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    align-items: stretch
}

@media (max-width: 900px) {
    .people-grid {
        grid-template-columns: 1fr
    }
}

.mini-card {
    display: block;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(2,6,23,.06);
    border: 1px solid rgba(2,6,23,.06);
    transition: transform .2s ease, box-shadow .2s ease
}

    .mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(2,6,23,.12)
    }

    .mini-card h4 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.25
    }

    .mini-card .role {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        color: var(--brand-1);
        background: #eef4fb;
        padding: 4px 8px;
        border-radius: 999px;
        margin: 2px 0 6px
    }

    .mini-card .contact {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        row-gap: 8px;
        margin-top: 6px
    }

        .mini-card .contact span {
            grid-column: 1;
            display: block;
            color: #475569;
            font-size: 14px;
            line-height: 1.45
        }

    .mini-card .chip {
        grid-column: 1;
        justify-self: start;
        display: inline-block;
        width: auto;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
        margin-top: 0
    }

/* Sections grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .state-grid {
        grid-template-columns: 1fr;
    }
}

.state-card {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(2,6,23,.08);
    border: 1px solid rgba(2,6,23,.06);
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: visible;
}

    .state-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background: radial-gradient(120% 120% at 0% 0%, rgba(214,163,0,.08), transparent 60%);
        pointer-events: none;
    }

    .state-card::after {
      
    }

    .state-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(2,6,23,.12);
    }

.state-media .portrait {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

.state-body h2 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #334155;
    letter-spacing: .02em;
}

.state-body h3 {
    margin: 0;
    font-size: 20px;
}

.state-body .contact {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
    margin-top: 8px;
}

.state-body .ext {
    margin: 10px 0 0;
}

.state-actions {
    margin-top: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--brand-2),#f3de95);
    color: #111827;
    font-weight: 800;
    border: 1px solid rgba(17,24,39,.06);
}

    .btn:hover {
        filter: brightness(.97);
    }

.state-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 64px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    background: #fff;
    padding: 4px;
}

/* Events page */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

    .filters .chip {
        background: #eef2f7;
        border: 1px solid rgba(2,6,23,.06);
        color: black;
    }

.event-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px
}

@media (max-width: 1000px) {
    .event-grid {
        grid-template-columns: 1fr
    }
}

.event-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(2,6,23,.08);
    border: 1px solid rgba(2,6,23,.06);
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease
}

    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(2,6,23,.12)
    }

    .event-card .icon {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        font-size: 34px;
        background: radial-gradient( 120% 120% at 30% 20%, #fff, #eaf0f8 );
        border: 1px solid rgba(2,6,23,.06)
    }

    .event-card .body h2 {
        margin: 0 0 6px
    }

    .event-card .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 10px
    }

.btn-secondary {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 999px;
    background: #f3f5f9;
    color: #0f172a;
    font-weight: 700;
    border: 1px solid rgba(2,6,23,.08)
}

    .btn-secondary:hover {
        background: #eef2f7
    }

.link-list {
    margin: 10px 0 0;
    padding-left: 20px
}

    .link-list li {
        margin: 4px 0
    }

/* Awards page */
.award-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px
}

@media (max-width: 1100px) {
    .award-grid {
        grid-template-columns: 1fr
    }
}

.award-feature {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px
}

@media (max-width: 700px) {
    .award-feature {
        grid-template-columns: 1fr
    }
}

.award-feature .media {
    display: grid;
    gap: 12px
}

    .award-feature .media img {
        width: 100%;
        border-radius: 14px;
        object-fit: cover;
        box-shadow: 0 10px 25px rgba(2,6,23,.08);
        border: 1px solid rgba(2,6,23,.06)
    }

    .award-feature .media .plaque {
        aspect-ratio: 4/5
    }

.badge {
    display: inline-block;
    background: #eef4fb;
    color: var(--brand-1);
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.06);
    margin-bottom: 8px
}

.award-side .body {
    padding: 18px
}

.soft {
    border: 0;
    border-top: 1px solid rgba(2,6,23,.08);
    margin: 16px 0
}

.downloads {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

@media (max-width: 700px) {
    .downloads {
        grid-template-columns: 1fr
    }
}

.download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(2,6,23,.08);
    box-shadow: 0 8px 18px rgba(2,6,23,.06)
}

.dl-icon {
    font-size: 20px;
    background: #f3f5f9;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 12px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center
}

/* Mobile drawer (hidden on desktop) */
.mobile-nav {
    display: none;
}

@media (max-width:900px) {
    /* desktop menu is already hidden via your media query; show hamburger */
    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: none;
    }

        .mobile-nav.open {
            display: block;
        }

    .mobile-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(2,6,23,.45);
        backdrop-filter: saturate(120%) blur(2px);
    }

    .mobile-panel {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: min(82vw, 320px);
        background: #fff;
        box-shadow: -20px 0 40px rgba(2,6,23,.18);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        transform: translateX(6%);
        opacity: .96;
        animation: slideIn .18s ease-out both;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(6%);
        }
    }

    .mobile-close {
        align-self: flex-end;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        border: 1px solid rgba(2,6,23,.08);
        background: #fff;
        cursor: pointer;
    }

    .mobile-links {
        list-style: none;
        padding: 0;
        margin: 8px 0 0;
        display: grid;
        gap: 10px;
    }

        .mobile-links a {
            display: block;
            padding: 12px 10px;
            border-radius: 12px;
            font-weight: 700;
            border: 1px solid rgba(2,6,23,.06);
            background: linear-gradient(#fff,#f9fbff);
        }

            .mobile-links a:active {
                transform: translateY(1px);
            }
}

