/* ============================================================
   SATA 2026 refresh: display typography + footer highlight
   Loaded AFTER each page's inline <style> so it wins on equal
   specificity. Depends on fonts-founders-grotesk.css for the
   'Founders Grotesk X-Condensed' face.
   ============================================================ */

/* ---- Display headings: let the type do the work ----
   Founders Grotesk X-Condensed, tighter leading, larger, caps. */
.hero-title,
.notorious-headline,
.section-headline,
.institute-banner-headline,
.tl-headline,
.team-section-title h2,
.draagvlak-kompas-hero h2,
.blog-hero-title,
.hero-v2-name,
.keynotes-title,
.media-title,
.gamechangers-title {
    font-family: 'Founders Grotesk X-Condensed', 'Founders Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-wrap: balance;
}

/* Hero: the big statement (STRATEGY. PSYCHOLOGY. VICTORY. scale) */
.hero-title,
.hero-v2-name,
.blog-hero-title {
    font-size: clamp(56px, 12vw, 150px);
    margin-bottom: 32px;
}

/* Major section headlines */
.notorious-headline,
.section-headline,
.tl-headline,
.team-section-title h2,
.keynotes-title,
.media-title,
.gamechangers-title {
    font-size: clamp(40px, 6.5vw, 88px);
}

/* Secondary banners: slightly calmer */
.institute-banner-headline,
.draagvlak-kompas-hero h2 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 0.95;
}

/* Blog article + card titles: condensed weight, keep sentence case
   (long Dutch titles stay readable), just a touch larger. */
.blog-title,
.blog-card-title {
    font-family: 'Founders Grotesk X-Condensed', 'Founders Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0.005em;
}
.blog-title {
    font-size: clamp(38px, 5.5vw, 68px);
}

/* ---- Shared top nav + hamburger + full-screen menu ----
   Inline on the homepages; provided here so standalone pages (the founder
   profiles) get the same navigation without duplicating all the CSS. */
.top-nav { position: fixed; top: 30px; right: 30px; z-index: 1000; display: flex; gap: 15px; }
.language-selector { display: flex; gap: 8px; }
.language-btn {
    width: 40px; height: 50px;
    background: rgba(40,166,154,0.05); border: 1px solid rgba(40,166,154,0.2);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; font-size: 11px; font-weight: 600;
    color: rgba(40,166,154,0.6); text-transform: uppercase; text-decoration: none;
}
.language-btn:hover { background: rgba(40,166,154,0.1); border-color: rgba(40,166,154,0.4); color: #28a69a; }
.language-btn.active { background: #28a69a; border-color: #28a69a; color: #fff; }
.hamburger-menu {
    width: 50px; height: 50px;
    background: rgba(40,166,154,0.1); border: 1px solid rgba(40,166,154,0.3);
    cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    transition: all 0.3s ease;
}
.hamburger-menu:hover { background: #28a69a; border-color: #28a69a; }
.hamburger-line { width: 24px; height: 2px; background: #28a69a; transition: all 0.3s ease; }
.hamburger-menu:hover .hamburger-line { background: #fff; }
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 999; display: none;
    justify-content: center; align-items: center; overflow-y: auto;
}
.menu-overlay.active { display: flex; }
.menu-content { text-align: center; margin: auto; padding: 56px 20px; }
.menu-content a {
    display: block; font-size: 32px; color: #fff; text-decoration: none;
    margin: 20px 0; transition: color 0.3s ease; text-transform: uppercase;
    font-weight: 600; letter-spacing: 0.05em;
}
.menu-content a:hover { color: #28a69a; }

/* Responsive 16:9 video embed (founder explainer videos) */
.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Subtle "NL" marker for links that point to a Dutch-only source (on EN/DE pages) */
.nl-tag {
    font-size: 0.5em;
    opacity: 0.5;
    letter-spacing: 0.08em;
    vertical-align: middle;
    margin-left: 0.4em;
    font-weight: 500;
}

/* ---- Clickable brand logo → home ---- */
a.logo-home-link {
    display: inline-block;
    line-height: 0;
    cursor: pointer;
    transition: opacity 0.25s ease;
}
a.logo-home-link:hover {
    opacity: 0.7;
}

/* ---- Podcast + newsletter page display headings ---- */
.page-title,
.nb-title,
.featured-title,
.shows-header h2,
.show-card h3 {
    font-family: 'Founders Grotesk X-Condensed', 'Founders Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 0.95;
}
.page-title,
.nb-title { font-size: clamp(44px, 7vw, 92px); line-height: 0.92; }
.featured-title { font-size: clamp(30px, 4.5vw, 56px); }
.shows-header h2 { font-size: clamp(32px, 5vw, 60px); }
.show-card h3 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.0; }

/* ---- Footer: highlight the key elements (contact + offices) ---- */
.footer-contact-info {
    margin-top: 28px;
    padding: 22px 24px;
    background: rgba(40, 166, 154, 0.06);
    border-left: 3px solid #28a69a;
}

.footer-contact-item {
    font-size: 15px;
    line-height: 1.9;
}

.footer-contact-item strong {
    display: inline-block;
    min-width: 62px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    vertical-align: baseline;
}

.footer-contact-item a {
    font-size: 17px;
    font-weight: 500;
}

/* ---- Forms replaced by e-mail CTAs (anchors styled as buttons) ---- */
a.newsletter-button,
a.newsletter-submit,
a.submit-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.contact-email-cta {
    margin-top: 10px;
}

.contact-email-cta p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
}
