@charset "UTF-8";

:root {
    /* Colors tailored to TS Jahn München */
    --bg-color: #050505;
    --text-color: #F2F2F2;
    --jahn-yellow: #FDBB00; /* TS Jahn Yellow */
    --jahn-yellow-dim: rgba(253, 187, 0, 0.6);
    --dark-grey: #121212;
    --warm-grey: #1A1A1A;
    --warm-grey-2: #888888;
    --white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'DM Sans', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Custom cursor active class handled via JS */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* =========================================================================
   CUSTOM CURSOR
========================================================================= */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0; 
}
body.custom-cursor-active .cursor-dot {
    opacity: 1;
}
body.custom-cursor-active .cursor-ring {
    opacity: 1;
}
.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--jahn-yellow);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.cursor-ring {
    width: 30px; height: 30px;
    border: 1px solid var(--jahn-yellow-dim);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}
.cursor-hover .cursor-ring {
    width: 50px; height: 50px;
    background-color: rgba(253, 187, 0, 0.1);
    border-color: var(--jahn-yellow);
}

body.custom-cursor-active, body.custom-cursor-active * {
    cursor: none !important;
}

/* =========================================================================
   PAGE LOADER
========================================================================= */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}
.loader-logo img {
    width: 120px;
    animation: pulseLoader 2s infinite ease-in-out;
}
@keyframes pulseLoader {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px var(--jahn-yellow-dim)); }
}

/* =========================================================================
   UTILITIES & BUTTONS
========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border-radius: 0; /* Square edges matching Eagles */
    transition: all 0.3s ease;
}
.btn-gold {
    background-color: var(--jahn-yellow);
    color: var(--bg-color);
}
.btn-gold:hover {
    background-color: var(--white);
    color: var(--bg-color);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--jahn-yellow);
    background: var(--jahn-yellow);
    color: var(--bg-color);
}

.slabel {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jahn-yellow);
    margin-bottom: 12px;
}
.stitle {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}
.stitle em {
    font-style: normal;
    color: var(--jahn-yellow);
}

/* Reveal Animation — driven by GSAP ScrollTrigger or IntersectionObserver */
.reveal { transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-inview { opacity: 1; transform: translateY(0); }

/* =========================================================================
   HEADER
========================================================================= */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.4s ease, padding 0.4s ease;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}
header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 16px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-logo img { width: 45px; }
.header-logo-text {
    display: flex; flex-direction: column;
}
.header-logo-text span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.header-logo-text small {
    font-size: 0.75rem;
    color: var(--warm-grey-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.header-join {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--jahn-yellow);
    border: 1px solid var(--jahn-yellow);
    padding: 8px 24px;
    transition: all 0.3s;
}
.header-join:hover {
    background: var(--jahn-yellow);
    color: var(--bg-color);
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px; height: 20px;
    z-index: 101; /* Above overlay */
}
.menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1), opacity 0.4s ease, background-color 0.4s ease;
}
.menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--jahn-yellow); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--jahn-yellow); }

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-color);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Closed reveal state */
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.fullscreen-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.fullscreen-menu nav ul li {
    margin-bottom: 2vh;
    overflow: hidden;
}
.fullscreen-menu .menu-link {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    transform: translateY(100%); /* Stagger in from bottom */
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    color: var(--text-color);
}
.fullscreen-menu.active .menu-link {
    transform: translateY(0);
}
.fullscreen-menu .menu-link:hover { color: var(--jahn-yellow); }
.fullscreen-menu .num {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--jahn-yellow);
    vertical-align: top;
    margin-right: 16px;
    font-family: var(--font-body);
    font-weight: 300;
}
.menu-socials {
    margin-top: 5vh;
    display: flex;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}
.fullscreen-menu.active .menu-socials { opacity: 1; }
.menu-socials a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-grey-2); }
.menu-socials a:hover { color: var(--white); }

/* =========================================================================
   HERO
========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-backdrop {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--dark-grey);
    z-index: 1;
}
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 60vw; height: 60vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(253, 187, 0, 0.15) 0%, rgba(5,5,5,0) 70%);
    z-index: 2;
    filter: blur(40px);
}
.hero-team-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* PLACEHOLDER: start image.jpg */
    background-image: url('images/start image.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.4;
    z-index: 3;
    animation: slowZoom 20s infinite alternate linear;
}
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-fade {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
    z-index: 4;
}

.hero-content {
    position: relative; z-index: 5;
    width: 100%; max-width: var(--max-width);
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 30px;
}
.hero-eyebrow-dot { width: 8px; height: 8px; background: var(--jahn-yellow); border-radius: 50%; }
.hero-eyebrow span { font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; }

.hero-main-stack {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 60px;
}
.hero-motto-top {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin: 0;
    color: var(--text-color);
}
.hero-logo-container {
    margin: -20px 0 -10px 0;
    z-index: 2;
}
.hero-main-logo { width: 140px; }
.hero-motto-bot {
    display: flex; gap: 20px; align-items: center;
}
.m-eagles {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    color: var(--jahn-yellow);
}
.m-bk {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    -webkit-text-stroke: 1px var(--text-color);
    color: transparent;
}

.hero-bottom {
    max-width: 600px; margin: 0 auto;
}
.hero-desc {
    font-size: 1.1rem; line-height: 1.6; color: var(--text-color);
    margin-bottom: 30px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; }

.scroll-ind {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    font-size: 1.5rem; color: var(--jahn-yellow);
    animation: bounce 2s infinite ease-in-out;
    z-index: 5;
}
@keyframes bounce { 0%, 100%{ transform: translate(-50%, 0); } 50%{ transform: translate(-50%, 10px); } }

/* =========================================================================
   MARQUEES (Gold & Dark)
========================================================================= */
.mwrap {
    overflow: hidden; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mwrap.gold { background: var(--jahn-yellow); color: var(--bg-color); border: none; }
.mtrack {
    display: flex; width: max-content;
    animation: scrollMarquee 20s linear infinite;
}
.mtrack-reverse { animation-direction: reverse; animation-duration: 25s;}
.mitem {
    font-family: var(--font-heading); font-size: 2rem; white-space: nowrap;
    display: flex; align-items: center; text-transform: uppercase;
}
.mwrap.gold .mitem strong { font-weight: normal; -webkit-text-stroke: 1px var(--bg-color); color: transparent; }
.mwrap:not(.gold) .mitem strong { font-weight: normal; color: var(--jahn-yellow); }

.msep {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: currentColor; margin: 0 40px; opacity: 0.4;
}
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================================================
   ABOUT (Intro)
========================================================================= */
.intro { padding: 120px 40px; max-width: var(--max-width); margin: 0 auto; }
.intro-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.intro-text p { font-size: 1.1rem; line-height: 1.7; color: var(--warm-grey-2); margin-bottom: 24px; }
.intro-stats {
    display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.intro-stats .snum { font-family: var(--font-heading); font-size: 3rem; color: var(--white); line-height: 1; }
.intro-stats .slbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--jahn-yellow); margin-top: 8px;}

.intro-images { position: relative; height: 600px; width: 100%; }
.iblock { position: absolute; background-size: cover; background-position: center; border-radius: 4px; }
.iblock-1 { 
    top: 0; left: 10%; width: 70%; height: 60%; 
    background-image: url('images/random 1.jpg'); 
    z-index: 2; 
}
.iblock-2 { 
    bottom: 0; right: 0; width: 60%; height: 50%; 
    background-image: url('images/Jbbl team.jpg'); 
    z-index: 3; 
}
.iblock-3 { 
    top: 20%; left: 0; width: 40%; height: 40%; 
    background-image: url('images/wnbl team.jpg'); 
    z-index: 1; filter: grayscale(1); opacity: 0.5;
}
.gold-chip {
    position: absolute; top: -20px; right: 10%; z-index: 4;
    background: var(--bg-color); border: 1px solid var(--jahn-yellow);
    padding: 16px; text-align: center; border-radius: 50%; width: 100px; height: 100px;
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
}
.gold-chip strong { font-family: var(--font-heading); font-size: 2rem; color: var(--jahn-yellow); line-height: 1; }
.gold-chip small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================================================================
   SLOGAN SECTION
========================================================================= */
.slogan-sec {
    padding: 80px 0; overflow: hidden; background: var(--warm-grey);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.slogan-track { 
    display: flex; width: max-content; 
    animation: scrollSlogan 25s linear infinite; 
}
@keyframes scrollSlogan { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.slogan-item {
    font-family: var(--font-heading); font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1; display: flex; align-items: center; color: var(--text-color);
}
.slogan-item b { -webkit-text-stroke: 1px var(--jahn-yellow); color: transparent; font-weight: normal; }
.slogan-item .sep { font-size: 0.5em; color: var(--jahn-yellow); margin: 0 40px; }

/* =========================================================================
   SESSIONS (TEAMS / OFFERS)
========================================================================= */
.sessions { padding: 120px 40px; max-width: var(--max-width); margin: 0 auto; }
.sessions-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }

.offer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-tile {
    position: relative; height: 500px; padding: 40px 32px; border-radius: 8px; overflow: hidden;
    background: var(--warm-grey); display: flex; flex-direction: column; justify-content: flex-end;
}
.offer-tile-bg {
    position: absolute; top:0; left:0; width:100%; height:100%; background-size:cover; background-position:center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); filter: grayscale(1); opacity: 0.4;
}
.offer-1 .offer-tile-bg { background-image: url('images/Regio 1. team.jpg'); }
.offer-2 .offer-tile-bg { background-image: url('images/Nbbl team.jpg'); }
.offer-3 .offer-tile-bg { background-image: url('images/random 1.jpg'); }

.offer-tile-ov {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
}
.tile-num {
    position: absolute; top: 32px; left: 32px; font-family: var(--font-heading); font-size: 3rem; color: rgba(255,255,255,0.1); line-height: 1; transition: color 0.4s;
}
.tile-link {
    position: absolute; top: 32px; right: 32px; font-size: 1.5rem; color: var(--jahn-yellow); transform: translate(-20px, 20px); opacity: 0; transition: all 0.4s;
}
.offer-content { position: relative; z-index: 2; transform: translateY(20px); transition: transform 0.4s; }
.offer-content h3 { font-family: var(--font-heading); font-size: 3rem; line-height: 0.9; margin: 0 0 16px 0; }
.offer-content h3 b { color: var(--jahn-yellow); font-weight: normal; }
.offer-content p { font-size: 0.95rem; line-height: 1.6; color: var(--warm-grey-2); margin-bottom: 24px; }
.offer-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 0.75rem; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; }

.offer-tile:hover .offer-tile-bg { transform: scale(1.05); filter: grayscale(0); opacity: 0.6; }
.offer-tile:hover .tile-num { color: var(--jahn-yellow); }
.offer-tile:hover .tile-link { transform: translate(0, 0); opacity: 1; }
.offer-tile:hover .offer-content { transform: translateY(0); }

/* =========================================================================
   FEATURED BLOCKS
========================================================================= */
.feat-blocks { padding: 0 20px 120px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat-block { position: relative; height: 400px; border-radius: 8px; overflow: hidden; cursor: pointer; }
.feat-block.full { grid-column: 1 / -1; height: 300px; }
.feat-bg { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; transition: transform 0.6s ease; filter: grayscale(1); opacity: 0.4; }
.feat-1 { background-image: url('images/start image.jpg'); }
.feat-2 { background-image: url('images/Jbbl team.jpg'); }
.feat-3 { background-image: url('images/Regio 1. team.jpg'); }
.feat-ov { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(5,5,5,0.6); transition: background 0.4s ease; }
.feat-content { position: absolute; left: 40px; bottom: 40px; z-index: 2; pointer-events: none;}
.feat-content h3 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 0.9; margin: 0; }
.feat-content b { color: transparent; -webkit-text-stroke: 1px var(--white); font-weight: normal; transition: color 0.4s ease; }
.feat-arrow { position: absolute; right: 40px; bottom: 40px; background: var(--jahn-yellow); color: var(--bg-color); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transform: scale(0); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.feat-block:hover .feat-bg { transform: scale(1.05); filter: grayscale(0); opacity: 0.8;}
.feat-block:hover .feat-ov { background: rgba(5,5,5,0.2); }
.feat-block:hover .feat-content b { color: var(--jahn-yellow); -webkit-text-stroke: 0; }
.feat-block:hover .feat-arrow { transform: scale(1); }

/* =========================================================================
   GALLERY
========================================================================= */
.gallery { padding: 120px 40px; max-width: var(--max-width); margin: 0 auto; }
.gallery-header { margin-bottom: 60px; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px;
}
.g-item { position: relative; border-radius: 8px; overflow: hidden; }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-img { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
/* Mapped Images */
.g-img-1 { background-image: url('images/Regio 1. team.jpg'); }
.g-img-2 { background-image: url('images/wnbl team.jpg'); }
.g-img-3 { background-image: url('images/Nbbl team.jpg'); }
.g-img-4 { background-image: url('images/Jbbl team.jpg'); }
.g-img-5 { background-image: url('images/random 1.jpg'); }
.g-img-6 { background-image: url('images/start image.jpg'); }

.g-hover { position: absolute; top:0; left:0; width:100%; height:100%; background: var(--jahn-yellow-dim); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
.g-hover span { font-family: var(--font-heading); font-size: 1.5rem; color: var(--bg-color); text-transform: uppercase; transform: translateY(20px); transition: transform 0.4s ease; }

.g-item:hover .g-img { transform: scale(1.05); }
.g-item:hover .g-hover { opacity: 1; }
.g-item:hover .g-hover span { transform: translateY(0); }

/* =========================================================================
   SPONSOR
========================================================================= */
.sponsor { padding: 120px 40px; max-width: var(--max-width); margin: 0 auto; }
.sponsor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sp-perks { margin: 40px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.perk { display: flex; flex-direction: column; }
.perk-ic { font-size: 1.5rem; margin-bottom: 8px; }
.perk strong { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.05em; font-weight: normal; }
.perk small { color: var(--warm-grey-2); font-size: 0.85rem; }
.sp-btns { display: flex; gap: 16px; }
.sp-img { width: 100%; height: 600px; background-image: url('images/wnbl team.jpg'); background-size: cover; background-position: center; border-radius: 8px; filter: grayscale(0.5); }

/* =========================================================================
   SOCIALS CTA
========================================================================= */
.socials-cta { text-align: center; padding: 120px 20px; background: var(--dark-grey); }
.sc-inner small { color: var(--jahn-yellow); text-transform: uppercase; letter-spacing: 0.1em; }
.sc-inner h2 { font-family: var(--font-heading); font-size: clamp(4rem, 10vw, 8rem); line-height: 0.9; margin: 20px 0 40px; }
.sc-inner b { -webkit-text-stroke: 1px var(--text-color); color: transparent; font-weight: normal;  }
.social-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.social-btn { padding: 12px 32px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; transition: all 0.3s; }
.social-btn:hover { background: var(--text-color); color: var(--bg-color); }

/* =========================================================================
   SPONSORS STRIP
========================================================================= */
.sp-strip { padding: 60px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sp-strip-label { color: var(--warm-grey-2); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 40px; }
.sp-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.5; filter: grayscale(1); }
.sp-logo-ph { font-family: var(--font-heading); font-size: 2rem; color: var(--warm-grey-2); }

/* =========================================================================
   FOOTER
========================================================================= */
footer { padding: 80px 40px 40px; max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-brand img { width: 60px; margin-bottom: 24px; }
.footer-brand p { color: var(--warm-grey-2); line-height: 1.7; max-width: 300px; }
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.fsoc { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.fsoc:hover { background: var(--jahn-yellow); border-color: var(--jahn-yellow); color: var(--bg-color); }

.footer-col h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px; color: var(--jahn-yellow); font-weight: normal; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--warm-grey-2); transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }

.footer-bot { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; color: var(--warm-grey-2); font-size: 0.85rem; }
.footer-bot span { color: var(--jahn-yellow); text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================================================================
   RESPONSIVE DESIGN
========================================================================= */
@media (max-width: 1024px) {
    .intro-grid { grid-template-columns: 1fr; }
    .intro-images { height: 400px; margin-top: 40px; }
    .offer-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsor-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    header { padding: 16px 20px; }
    header.scrolled { padding: 12px 20px; }
    .hero-team-img { 
        background-size: cover; 
        background-position: center top; 
    }
    .hero-motto-top { font-size: 4rem; }
    .m-eagles, .m-bk { font-size: 3rem; }
    .intro-images { height: 400px; margin-top: 40px; }
    .intro, .sessions, .gallery, .sponsor { padding: 60px 20px; }
    .sponsor-grid { gap: 40px; }
    .iblock-1 { top: 0; left: 0; width: 60%; height: 50%; }
    .iblock-2 { bottom: 0; right: 0; width: 55%; height: 60%; }
    .iblock-3 { top: 40%; left: 10%; width: 40%; height: 40%; }
    .gold-chip { width: 80px; height: 80px; padding: 10px; right: 5%; top: 10%; }
    .gold-chip strong { font-size: 1.4rem; }
    .slogan-item { font-size: 3.5rem; }
    .slogan-sec { padding: 40px 0; }
    .header-join { display: none; }
    .hero-motto-bot { flex-direction: column; gap: 0; margin-top: -10px; }
    .hero-logo-container { margin: 10px 0; }
    .feat-grid { grid-template-columns: 1fr; }
    .feat-content h3 { font-size: 2.5rem; }
    
    /* SPONSOR SECTION MOBILE REDESIGN */
    .sp-perks { grid-template-columns: 1fr; margin: 30px 0; gap: 16px; }
    .perk { 
        display: grid; 
        grid-template-columns: auto 1fr; 
        grid-template-rows: auto auto; 
        column-gap: 20px; row-gap: 2px;
        align-items: center;
        background: var(--dark-grey);
        padding: 20px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .perk-ic { grid-column: 1; grid-row: 1 / span 2; font-size: 2rem; margin: 0; }
    .perk strong { grid-column: 2; grid-row: 1; font-size: 1.4rem; }
    .perk small { grid-column: 2; grid-row: 2; font-size: 0.85rem; }
    
    .sp-btns { flex-direction: column; align-items: center; justify-content: center; width: 100%; gap: 16px; margin: 0 auto; }
    .sp-btns .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
    
    .sp-img { height: 350px; margin-top: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px;}
    .footer-bot { flex-direction: column; gap: 16px; text-align: center; }
    
    /* Disable Custom Cursor on Mobile */
    .cursor-dot, .cursor-ring { display: none; }
    html, body, a, button { cursor: auto; }
    /* Header: push right so back button doesn't overlap */
    #hdr { padding-left: 100px !important; }
    /* Hero text */
    .hero-title, .hero h1 { font-size: clamp(2.8rem, 15vw, 5rem) !important; line-height: 0.9 !important; }
    .hero-sub, .hero p { font-size: 0.9rem !important; }
    /* Section headings */
    .section-label { font-size: clamp(2rem, 11vw, 3.5rem) !important; }
}
