/* ============================================================
   Kaidok.net — About Page (page-specific styles only)
   Base styles, mobile nav, footer etc. are in global.css
   NOTE: About uses .about-hero (not .page-hero) so hero bg is set here
   ============================================================ */

.primary-nav a[href="/about.php"] { color: var(--gold); }

/* ============================================================
   ABOUT HERO (unique class — includes hero bg image)
   ============================================================ */
.about-hero {
    position: relative;
    padding: 90px 0 72px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background-color: var(--navy);
    background-image:
        linear-gradient(to bottom, rgba(10,17,40,0.85) 0%, rgba(10,17,40,0.78) 60%, rgba(10,17,40,0.92) 100%),
        url('/assets/img/about-hero.png');
    background-size: cover;
    background-position: center 35%;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,215,0,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; max-width: 900px; }
.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.93;
    text-transform: uppercase;
    color: var(--frost);
    margin-bottom: 20px;
}
.hero-sub { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto-section { padding: 90px 0; background: var(--navy-mid); border-bottom: 1px solid var(--border); }
.manifesto-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
.manifesto-lead { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; line-height: 1.4; color: var(--frost); margin-bottom: 28px; }
.manifesto-body p { font-size: 1rem; color: var(--slate-light); line-height: 1.85; margin-bottom: 20px; }
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-aside { display: flex; flex-direction: column; gap: 36px; }

/* Alaska flag widget */
.aside-flag { width: 180px; height: 96px; background: #061830; border: 1px solid var(--gold-border); border-radius: var(--radius-md); position: relative; overflow: hidden; }
.flag-dipper { position: relative; width: 100%; height: 100%; }
.star { position: absolute; background: #FFD700; border-radius: 50%; animation: twinkle 3s ease-in-out infinite; transform: translate(-50%, -50%); }
.star.s7 { width: 6px; height: 6px; left: 12%; top: 28%; animation-delay: 0.0s; }
.star.s6 { width: 6px; height: 6px; left: 23%; top: 35%; animation-delay: 0.4s; }
.star.s5 { width: 6px; height: 6px; left: 32%; top: 46%; animation-delay: 0.8s; }
.star.s4 { width: 6px; height: 6px; left: 38%; top: 56%; animation-delay: 1.2s; }
.star.s1 { width: 6px; height: 6px; left: 58%; top: 52%; animation-delay: 1.4s; }
.star.s2 { width: 6px; height: 6px; left: 62%; top: 78%; animation-delay: 1.6s; }
.star.s3 { width: 6px; height: 6px; left: 42%; top: 82%; animation-delay: 1.8s; }
.star.polaris { width: 9px; height: 9px; left: 84%; top: 18%; background: #ffffff; box-shadow: 0 0 8px 3px rgba(255,215,0,0.5); animation-delay: 0s; }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.7); } }

.aside-quote { border-left: 3px solid var(--gold); padding: 16px 20px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1.4; color: var(--frost); font-style: italic; }
.founding-year { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.founding-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); display: block; margin-top: 4px; }

/* ============================================================
   STATS
   ============================================================ */
.about-stats-section { background: var(--navy-light); padding: 56px 0; border-top: 1px solid rgba(255,215,0,0.18); border-bottom: 1px solid rgba(255,215,0,0.18); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.about-stat { padding: 16px 24px; position: relative; }
.about-stat + .about-stat::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.10); }
.astat-value { font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.astat-value.astat-word { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.astat-small { font-size: 0.5em; font-weight: 700; vertical-align: super; color: var(--gold-dark); }
.astat-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light); }

/* ============================================================
   ALASKA CONTRAST
   ============================================================ */
.alaska-section { padding: 90px 0; background: var(--navy); border-bottom: 1px solid var(--border); }
.alaska-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.alaska-copy p { font-size: 0.97rem; color: var(--slate-light); line-height: 1.8; margin-bottom: 18px; }
.alaska-copy p:last-child { margin-bottom: 0; }
.alaska-contrast { display: flex; flex-direction: column; gap: 20px; }
.contrast-item { border-radius: var(--radius-lg); padding: 28px; }
.contrast-bad { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); }
.contrast-good { background: rgba(255,215,0,0.05); border: 1px solid var(--gold-border); }
.contrast-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.contrast-bad .contrast-label { color: #f87171; }
.contrast-good .contrast-label { color: var(--gold); }
.contrast-item ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--slate-light); line-height: 1.5; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contrast-item ul li:last-child { border-bottom: none; }
.contrast-bad ul li::before { content: '✕'; color: #f87171; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.contrast-good ul li::before { content: '✓'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   HOSTDANGO FAMILY
   ============================================================ */
.family-section { padding: 90px 0; background: var(--navy-mid); border-bottom: 1px solid var(--border); }
.family-inner { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; max-width: 960px; margin: 0 auto; }
.family-logo { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--frost); letter-spacing: 0.02em; line-height: 1; border: 2px solid var(--gold-border); padding: 20px 28px; border-radius: var(--radius-lg); background: var(--gold-dim); margin-bottom: 8px; }
.family-sub { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-align: center; }
.family-copy p { font-size: 0.97rem; color: var(--slate-light); line-height: 1.8; margin-bottom: 18px; }
.family-copy p:last-child { margin-bottom: 0; }
.family-copy a { color: var(--gold); font-weight: 600; }
.family-copy a:hover { text-decoration: underline; }

/* ============================================================
   VALUES
   ============================================================ */
.values-section { padding: 90px 0; background: var(--navy); }
.values-section .section-title { margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 40px 36px; transition: border-color var(--transition), transform var(--transition); }
.value-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.value-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: rgba(255,215,0,0.08); line-height: 1; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; color: var(--frost); margin-bottom: 14px; line-height: 1.1; }
.value-card p { font-size: 0.93rem; color: var(--slate-light); line-height: 1.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .about-hero { padding: 70px 0 56px; }
    .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
    .manifesto-aside { flex-direction: row; flex-wrap: wrap; gap: 28px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .about-stat + .about-stat::before { display: none; }
    .alaska-inner { grid-template-columns: 1fr; gap: 48px; }
    .family-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .family-logo { display: inline-block; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .about-hero { padding: 56px 0 48px; }
    .about-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
    .manifesto-aside { flex-direction: column; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card { padding: 28px 24px; }
}
