@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap');
:root{
--blue: #1ea0e0;
--blue-dark: #0b6ea8;
--blue-deep: #073a56;
--black: #0c0c0d;
--white: #ffffff;
--gray-100: #f4f6f8;
--gray-200: #e7ebee;
--gray-400: #b9c0c7;
--gray-600: #6b7480;
--shadow: 0 20px 50px rgba(0,0,0,.35);
--radius: 14px;
--header-h: 92px;
--util-h: 40px;
--max: 1280px;
}
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
margin: 0;
font-family: 'League Spartan', Arial, sans-serif;
font-weight: 500;
color: var(--black);
background: var(--white);
-webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-weight: 800; text-transform: uppercase; letter-spacing: .01em; margin: 0 0 .5em; }
p{ line-height: 1.6; color: var(--gray-600); }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.btn{
display: inline-flex; align-items: center; justify-content: center; gap: .5em;
font-family: inherit; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
font-size: .9rem; padding: 14px 30px; border-radius: 999px; border: 2px solid var(--blue);
background: var(--blue); color: var(--white); cursor: pointer; transition: all .25s ease;
}
.btn:hover{ background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.btn.outline{ background: transparent; color: var(--blue); }
.btn.outline:hover{ background: var(--blue); color: var(--white); }
.btn.dark{ background: var(--black); border-color: var(--black); }
.btn.dark:hover{ background: #000; border-color: #000; }
.eyebrow{ color: var(--blue); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; }
.section{ padding: 80px 0; }
.section-head{ text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head p{ margin-top: .75rem; }
.site-header{ position: sticky; top: 0; z-index: 500; background: var(--white); }
.header-flex{ display: flex; align-items: stretch; height: var(--header-h); width: 100%; }
.logo-panel{ display: flex; align-items: center; flex-shrink: 0; padding: 0 46px 0 24px; background: var(--white); }
.logo{ display: flex; flex-direction: column; line-height: 1; font-weight: 900; letter-spacing: .01em; }
.logo .l1{ font-size: 1.5rem; }
.logo .l2{ font-size: .62rem; letter-spacing: .35em; color: var(--blue); font-weight: 700; margin-top: 4px; }
.nav-panel{
flex: 1; min-width: 0; position: relative; display: flex; align-items: center;
margin-left: -30px; padding: 0 28px 0 58px;
}
.nav-panel::before{
content: ''; position: absolute; inset: 0; background: var(--blue);
clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
z-index: 0;
}
.main-nav{ position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.nav-links{ display: flex; align-items: center; gap: 26px; }
.nav-extras{ display: flex; align-items: center; gap: 20px; }
.main-nav a, .dd-toggle{
font-weight: 800; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
padding: 10px 0; position: relative; white-space: nowrap; color: var(--white);
background: none; border: none; cursor: pointer; font-family: inherit;
display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a::after, .dd-toggle::after{
content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 3px;
background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links > a:hover::after, .nav-links > a.is-active::after,
.nav-item-dropdown:hover .dd-toggle::after, .dd-toggle.is-active::after{ transform: scaleX(1); }
.dd-toggle::after{ bottom: 4px; }
.dd-caret{ font-size: .6rem; transition: transform .2s; }
.nav-item-dropdown:hover .dd-caret{ transform: rotate(180deg); }
.nav-item-dropdown{ position: relative; }
.dd-menu{
position: absolute; top: 100%; left: 50%; transform: translate(-50%, -8px);
min-width: 200px; background: var(--white); border-radius: 0 0 12px 12px; box-shadow: var(--shadow);
padding: 8px 0; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 60;
}
.nav-item-dropdown:hover .dd-menu, .nav-item-dropdown:focus-within .dd-menu{
opacity: 1; pointer-events: auto;
}
.dd-menu a{
display: block; padding: 11px 22px; color: var(--black); font-weight: 700; font-size: .82rem;
text-transform: uppercase; letter-spacing: .03em; white-space: nowrap;
}
.dd-menu a:hover, .dd-menu a.is-active{ background: var(--gray-100); color: var(--blue); }
.nav-extras .social-links{ display: flex; align-items: center; gap: 12px; }
.nav-extras .social-links a{ display: flex; color: var(--white); opacity: .85; transition: opacity .2s, transform .2s; }
.nav-extras .social-links a:hover{ opacity: 1; transform: translateY(-2px); }
.nav-extras .social-links svg{ width: 17px; height: 17px; }
.social-links{ display: flex; align-items: center; gap: 14px; }
.social-links svg{ width: 20px; height: 20px; }
.social-links a{ display: flex; }
.nav-extras .lang-switch{ display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: .78rem; letter-spacing: .05em; }
.nav-extras .lang-switch a, .nav-extras .lang-switch button{
background: none; border: none; color: rgba(255,255,255,.65); cursor: pointer; font-family: inherit;
font-weight: 700; font-size: .78rem; letter-spacing: .05em; padding: 2px 4px;
}
.nav-extras .lang-switch a.active, .nav-extras .lang-switch button.active{ color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.nav-extras .lang-switch span{ color: rgba(255,255,255,.4); }
.nav-extras .btn{ padding: 10px 24px; background: var(--white); color: var(--blue); border-color: var(--white); }
.nav-extras .btn:hover{ background: var(--black); color: var(--white); border-color: var(--black); }
.burger{ display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; margin-right: 20px; margin-top:20px; }
.burger span{ width: 26px; height: 3px; background: var(--white); border-radius: 2px; }
.hero-select{
display: flex; width: 100%; height: calc(100vh - var(--header-h) - var(--util-h));
min-height: 460px; max-height: 820px;
}
.hero-tile{
position: relative; flex: 1; min-width: 0; overflow: hidden;
background-size: cover; background-position: center;
filter: grayscale(1) brightness(.62);
transition: flex-grow .5s cubic-bezier(.22,.61,.36,1), filter .45s ease, box-shadow .45s ease;
display: flex; align-items: flex-end; z-index: 1;
}
.hero-select:hover .hero-tile{ filter: grayscale(1) brightness(.32); }
.hero-tile:hover,
.hero-select:hover .hero-tile:hover{
flex-grow: 1.35; filter: grayscale(0) brightness(.85); z-index: 3;
box-shadow: -18px 0 50px rgba(0,0,0,.55), 18px 0 50px rgba(0,0,0,.55);
}
.hero-tile::before{
content: ''; position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}
.hero-tile .tile-inner{
position: relative; z-index: 1; padding: 0 0 42px 26px; color: var(--white); width: 100%;
}
.hero-tile .tile-num{ font-size: .78rem; font-weight: 700; letter-spacing: .2em; opacity: .8; display: block; margin-bottom: 6px; text-transform: uppercase; }
.hero-tile .tile-label{ font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.hero-tile .tile-sub{
font-size: .82rem; font-weight: 600; color: var(--gray-200); margin-top: 6px; text-transform: uppercase; letter-spacing: .04em;
max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s ease;
}
.hero-tile:hover .tile-sub{ max-height: 60px; opacity: 1; }
.hero-tile + .hero-tile{ border-left: 2px solid rgba(255,255,255,.15); }
.hero-tile-full{ background-position: 60% 8% !important; background-size: 260% !important; }
.partners{ background: var(--gray-100); padding: 44px 0; overflow: hidden; }
.marquee{ display: flex; width: max-content; animation: scroll-left 38s linear infinite; }
.partners:hover .marquee{ animation-play-state: paused; }
.marquee-track{ display: flex; align-items: center; gap: 56px; padding-right: 56px; }
.marquee img{ height: 46px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.65); transition: filter .25s; }
.marquee img:hover{ filter: grayscale(0) opacity(1); }
@keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.banners{ display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 56px 0; }
.banners-single{ grid-template-columns: 1fr; }
.banners-single .banner-card{ max-width: 720px; margin: 0 auto; width: 100%; }
.banner-card{
position: relative; min-height: 340px; display: flex; align-items: flex-end;
background-size: cover; background-position: center; cursor: pointer;
border: none; text-align: left; padding: 0; overflow: hidden;
}
.banner-card::before{
content: ''; position: absolute; inset: 0;
background: linear-gradient(0deg, rgba(7,58,86,.92) 0%, rgba(7,58,86,.15) 65%);
transition: background .3s;
}
.banner-card:hover::before{ background: linear-gradient(0deg, rgba(30,160,224,.95) 0%, rgba(7,58,86,.25) 65%); }
.banner-card .b-inner{ position: relative; z-index: 1; padding: 36px; color: var(--white); }
.banner-card .b-eyebrow{ font-weight: 800; letter-spacing: .15em; font-size: .78rem; color: var(--gray-200); }
.banner-card h3{ font-size: clamp(1.4rem,3vw,2.1rem); margin: 6px 0 8px; }
.banner-card .b-cta{
display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .82rem;
letter-spacing: .05em; text-transform: uppercase; margin-top: 10px;
}
.hof-grid{ }
.hof-card{ background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; text-align: center; }
.hof-photo{ aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; position: relative; }
.hof-photo img{ width: 100%; height: 100%; object-fit: cover; filter: grayscale(.85); transition: filter .3s, transform .5s; }
.hof-card:hover .hof-photo img{ filter: grayscale(0); transform: scale(1.07); }
.hof-photo::after{
content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
font-size: 2.2rem; color: var(--white); background: rgba(7,58,86,0); font-weight: 900;
transition: background .3s, opacity .3s; opacity: 0;
}
.hof-card:hover .hof-photo::after{ background: rgba(7,58,86,.35); opacity: 1; }
.hof-name{ font-weight: 800; font-size: 1rem; text-transform: uppercase; }
.modal-overlay{
position: fixed; inset: 0; background: rgba(7,10,14,.78); z-index: 1000;
display: flex; align-items: center; justify-content: center; padding: 24px;
opacity: 0; visibility: hidden; pointer-events: none;
transition: opacity .25s ease, visibility 0s linear .25s;
}
.modal-overlay.is-open{
opacity: 1; visibility: visible; pointer-events: auto;
transition: opacity .25s ease, visibility 0s linear 0s;
}
.modal-box{
background: var(--white); border-radius: var(--radius); max-width: 720px; width: 100%;
max-height: 86vh; overflow-y: auto; position: relative; transform: translateY(16px); transition: transform .3s ease;
}
.modal-overlay.is-open .modal-box{ transform: translateY(0); }
.modal-close{
position: sticky; top: 0; float: right; margin: 14px 14px 0 0; width: 38px; height: 38px; border-radius: 50%;
border: none; background: var(--gray-100); font-size: 1.2rem; cursor: pointer; z-index: 2;
}
.modal-media{ width: 100%; max-height: 320px; object-fit: cover; }
.modal-content{ padding: 8px 36px 36px; }
.modal-content .eyebrow{ display: block; margin-bottom: 6px; }
.modal-content h3{ font-size: 1.7rem; margin-bottom: 14px; }
.modal-content p{ margin: 0 0 1em; }
.modal-content dl{ display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 20px 0; font-size: .92rem; }
.modal-content dt{ font-weight: 800; color: var(--black); }
.modal-content dd{ margin: 0; color: var(--gray-600); }
.site-footer{ background: var(--blue-deep); color: var(--white); padding: 64px 0 0; }
.footer-grid{ padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-grid h4{ color: var(--white); font-size: .82rem; letter-spacing: .1em; margin-bottom: 18px; color: #9fd4ef; }
.footer-grid p, .footer-grid a{ color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.9; }
.footer-grid a:hover{ color: var(--white); text-decoration: underline; }
.footer-contact{ margin-bottom: 14px; }
.footer-contact strong{ display: block; color: var(--white); }
.footer-bottom{
display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
padding: 22px 0; font-size: .8rem; color: rgba(255,255,255,.6);
}
.footer-bottom .social-links a{ color: rgba(255,255,255,.7); }
.footer-logo{ font-weight: 900; font-size: 1.4rem; color: var(--white); margin-bottom: 14px; }
.page-hero{
position: relative; min-height: 380px; display: flex; align-items: flex-end;
background-size: cover; background-position: center; color: var(--white);
}
.page-hero::before{ content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(7,10,14,.85), rgba(7,10,14,.15)); }
.page-hero .wrap{ position: relative; z-index: 1; padding-bottom: 46px; }
.page-hero .eyebrow{ color: #9fd4ef; }
.page-hero h1{ font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 8px 0 0; }
.discipline-tabs{ display: flex; gap: 10px; flex-wrap: wrap; background: var(--gray-100); padding: 18px 0; }
.discipline-tabs .wrap{ display: flex; gap: 10px; flex-wrap: wrap; }
.discipline-tabs a{
font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
padding: 10px 20px; border-radius: 999px; background: var(--white); border: 2px solid var(--gray-200);
transition: all .2s;
}
.discipline-tabs a:hover{ border-color: var(--blue); color: var(--blue); }
.discipline-tabs a.is-active{ background: var(--blue); border-color: var(--blue); color: var(--white); }
.stat-grid{ }
.stat-card{ background: var(--gray-100); border-radius: var(--radius); padding: 30px; }
.stat-card .stat-icon{ font-size: 1.8rem; }
.stat-card h4{ color: var(--blue); font-size: .82rem; letter-spacing: .12em; margin: 14px 0 6px; }
.stat-card .stat-big{ font-size: 1.9rem; font-weight: 900; margin-bottom: 4px; }
.stat-card .stat-limit{ font-size: .84rem; color: var(--gray-600); }
table.price-table{ width: 100%; border-collapse: collapse; margin-top: 10px; }
table.price-table th, table.price-table td{ padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: .92rem; }
table.price-table th{ text-transform: uppercase; letter-spacing: .05em; font-size: .75rem; color: var(--gray-600); }
table.price-table tr:last-child td{ border-bottom: none; }
.two-col{ }
.chip-list{ display: flex; flex-wrap: wrap; gap: 10px; }
.chip{ background: var(--gray-100); border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 700; }
.cta-band{ background: var(--black); color: var(--white); text-align: center; padding: 70px 0; }
.cta-band h2{ color: var(--white); }
.cta-band p{ color: var(--gray-400); max-width: 560px; margin: 0 auto 28px; }
.routes-grid{ margin-top: 8px; }
.route-col{ text-align: center; }
.route-col .route-icon{ font-size: 1.7rem; margin-bottom: 8px; }
.route-col .route-stat{ font-weight: 900; font-size: 1.5rem; color: var(--blue-dark); letter-spacing: .01em; }
.route-col .route-laps{ font-size: .8rem; color: var(--gray-600); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin: 2px 0 16px; }
.route-map{ border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 14px 34px rgba(0,0,0,.08); background: var(--white); }
.route-map img{ width: 100%; display: block; }
.program-section{ background: var(--gray-100); }
.program-days{ }
.program-day{ background: var(--white); border-radius: var(--radius); padding: 32px 30px; box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.program-day h3{ font-size: 1.1rem; margin-bottom: 4px; }
.program-day .program-date{ display: block; color: var(--blue); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 18px; }
.program-row{ display: flex; gap: 16px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--gray-200); }
.program-day .program-row:last-child{ border-bottom: none; }
.program-time{ flex: 0 0 96px; font-weight: 800; font-size: .82rem; color: var(--gray-600); letter-spacing: .02em; }
.program-text{ font-size: .88rem; color: var(--gray-600); line-height: 1.5; }
.program-row.hl{ background: linear-gradient(90deg, rgba(30,160,224,.09), rgba(30,160,224,0)); margin: 0 -16px; padding: 11px 16px; border-radius: 8px; border-bottom-color: transparent; }
.program-row.hl .program-time{ color: var(--black); }
.program-row.hl .program-text{ color: var(--blue-dark); font-weight: 800; }
.home-program{ padding: 90px 0; }
.home-program .section-head{ margin-bottom: 56px; }
.hp-timeline{ position: relative; max-width: 900px; margin: 0 auto; }
.hp-timeline::before{ content: ''; position: absolute; left: 20px; top: 6px; bottom: 6px; width: 2px; background: var(--gray-200); }
.hp-day{ margin-bottom: 44px; }
.hp-day:last-child{ margin-bottom: 0; }
.hp-day-label{
display: inline-flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.05rem;
text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; padding-left: 0;
}
.hp-day-label::before{
content: ''; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--gray-200);
}
.hp-day-label .hp-day-date{ color: var(--blue); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; display: block; }
.hp-items{ padding-left: 54px; }
.hp-item{ display: flex; gap: 14px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.hp-item .hp-time{ flex: 0 0 78px; font-weight: 900; color: var(--black); font-size: .86rem; }
.hp-item .hp-text{ font-size: .86rem; color: var(--gray-600); }
.hp-item.hl{ background: linear-gradient(90deg, rgba(30,160,224,.09), transparent); border-radius: 8px; padding: 10px 12px; border-bottom-color: transparent; }
.hp-item.hl .hp-text{ color: var(--blue-dark); font-weight: 800; }
.expo-intro{ max-width: 760px; }
.expo-wrap{ }
.expo-map-frame{
position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
border: 6px solid var(--white); outline: 1px solid var(--gray-200); background: #f4ead9;
}
.expo-map-frame img{ width: 100%; display: block; }
.venue-map{ width: 100%; height: auto; display: block; font-family: 'League Spartan', Arial, sans-serif; }
.venue-map .vm-pin-gold circle:nth-child(2){ fill: #ffcf4d; stroke: #a35a00; stroke-width: 2; }
.venue-map .vm-pin-blue circle:nth-child(2){ fill: var(--blue); stroke: var(--blue-deep); stroke-width: 2; }
.venue-map .vm-pin text{ fill: var(--white); font-weight: 900; font-size: 15px; text-anchor: middle; dominant-baseline: central; }
.venue-map .vm-pin-gold text{ fill: #6e3f00; }
.venue-map .vm-label{ font-weight: 800; fill: var(--blue-deep); text-transform: uppercase; letter-spacing: .04em; }
.venue-map .vm-river-label{ font-weight: 900; fill: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.expo-map-tag{
position: absolute; top: 18px; left: 18px; background: var(--blue); color: var(--white);
font-weight: 800; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.expo-panels{ display: flex; flex-direction: column; gap: 22px; }
.expo-panel{ border-radius: var(--radius); padding: 28px 26px; }
.expo-panel.is-yellow{ background: #ffcf4d; }
.expo-panel.is-blue{ background: var(--blue); }
.expo-panel h3{ color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.expo-panel.is-yellow h3{ color: #a35a00; }
.expo-panel .expo-note{ font-size: .78rem; font-style: italic; font-weight: 600; margin-top: 16px; }
.expo-panel.is-yellow .expo-note{ color: #7a4600; }
.expo-panel.is-blue .expo-note{ color: rgba(255,255,255,.85); }
.expo-list{ counter-reset: expo; margin-top: 14px; }
.expo-list.is-areal{ counter-reset: expo 10; }
.expo-list li{
counter-increment: expo; display: flex; gap: 12px; align-items: flex-start;
font-weight: 700; font-size: .92rem; padding: 7px 0;
}
.expo-panel.is-yellow .expo-list li{ color: #6e3f00; }
.expo-panel.is-blue .expo-list li{ color: var(--white); }
.expo-list li::before{
content: counter(expo); flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
display: flex; align-items: center; justify-content: center; font-size: .74rem; font-weight: 900;
}
.expo-panel.is-yellow .expo-list li::before{ background: var(--white); color: #a35a00; }
.expo-panel.is-blue .expo-list li::before{ background: rgba(255,255,255,.25); color: var(--white); }
.expo-cta-row{ display: flex; gap: 14px; flex-wrap: wrap; }
.expo-hero-note{ background: var(--white); border-radius: var(--radius); padding: 8px 0; }
@media (max-width: 980px){
.nav-panel{ flex: 0 0 auto; margin-left: 0; padding: 0 20px 0 0; }
.nav-panel::before{ display: none; }
.header-flex{ justify-content: space-between; }
.main-nav{ position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
background: var(--white); flex-direction: column; align-items: stretch; justify-content: flex-start;
padding: 30px 24px; gap: 0; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
.main-nav.is-open{ transform: translateX(0); }
.nav-links{ flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
.nav-links > a, .dd-toggle{ color: var(--black); width: 100%; padding: 14px 0; }
.nav-links > a::after, .dd-toggle::after{ background: var(--blue); }
.nav-extras{ flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.nav-extras .social-links a{ color: var(--black); }
.nav-extras .lang-switch a, .nav-extras .lang-switch a, .nav-extras .lang-switch button{ color: var(--gray-600); }
.nav-extras .lang-switch a.active, .nav-extras .lang-switch a.active, .nav-extras .lang-switch button.active{ color: var(--black); }
.nav-extras .lang-switch span{ color: var(--gray-400); }
.nav-extras .btn{ background: var(--blue); color: var(--white); border-color: var(--blue); width: 100%; }
.burger span{ background: var(--black); }
.dd-menu{
position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none;
padding: 0 0 8px 16px; display: none; width: 100%; min-width: 0;
}
.nav-item-dropdown.is-open .dd-menu{ display: block; }
.dd-menu a{ color: var(--gray-600); padding: 10px 0; }
.burger{ display: flex; }
.hero-select{ flex-direction: column; height: auto; }
.hero-tile{ height: 130px; flex: none; filter: grayscale(1) brightness(.75); }
.hero-select:hover .hero-tile{ filter: grayscale(1) brightness(.75); }
.hero-tile:hover{ flex-grow: 0; box-shadow: none; }
.hero-tile.is-active{ filter: grayscale(0) brightness(.9); }
.hero-tile + .hero-tile{ border-left: none; border-top: 2px solid rgba(255,255,255,.15); }
.hero-tile-full{ background-position: 60% 48% !important; background-size: cover !important; }
.banners{ grid-template-columns: 1fr; }
.hof-grid{ grid-template-columns: repeat(2,1fr); }
.footer-grid{ grid-template-columns: 1fr 1fr; }
.stat-grid{ grid-template-columns: 1fr; }
.two-col{ grid-template-columns: 1fr; gap: 30px; }
.routes-grid{ grid-template-columns: 1fr; gap: 36px; }
.program-days{ grid-template-columns: 1fr; }
.expo-wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
.hof-grid{ grid-template-columns: repeat(2,1fr); gap: 14px; }
.footer-grid{ grid-template-columns: 1fr; }
.section{ padding: 56px 0; }
.hp-day-label{ font-size: .92rem; }
.hp-item .hp-time{ flex-basis: 64px; }
}table.data-table{ width: 100%; border-collapse: collapse; margin-top: 10px; }
table.data-table th, table.data-table td{ padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: .92rem; }
table.data-table th{ text-transform: uppercase; letter-spacing: .05em; font-size: .75rem; color: var(--gray-600); }
table.data-table tr:last-child td{ border-bottom: none; }
table.data-table td a{ color: var(--blue); font-weight: 700; text-decoration: none; }
table.data-table td a:hover{ text-decoration: underline; }
table.data-table td a + a{ margin-left: 14px; }
.gallery-grid{ }
.gallery-card{ background: var(--gray-100); border-radius: var(--radius); padding: 22px; }
.gallery-card h4{ font-size: 1.1rem; margin-bottom: 10px; }
.gallery-card ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.gallery-card ul a{ color: var(--blue); font-weight: 700; text-decoration: none; font-size: .88rem; }
.gallery-card ul a:hover{ text-decoration: underline; }
.gallery-card.is-empty{ opacity: .6; font-size: .85rem; color: var(--gray-600); display: flex; align-items: center; }
.shop-grid{ }
.shop-card{ background: var(--gray-100); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s; }
.shop-card:hover{ transform: translateY(-4px); }
.shop-card img{ width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--white); }
.shop-card .shop-card-body{ padding: 18px; }
.shop-card h4{ font-size: .95rem; margin-bottom: 6px; }
.shop-card .shop-price{ font-weight: 900; color: var(--blue); font-size: 1.05rem; }
.shop-card .shop-variant{ font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); margin-top: 4px; }
.shop-card.is-voucher{ border: 2px solid var(--blue); }
.partner-tier{ margin-bottom: 44px; }
.partner-tier h3{ font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 18px; }
.partner-logos{ display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.partner-logos a{ display: flex; align-items: center; }
.partner-logos img{ max-height: 56px; max-width: 160px; object-fit: contain; }
.partner-tier.is-empty p{ color: var(--gray-600); font-size: .9rem; }
.partner-tier .partner-org-text{ font-size: .92rem; line-height: 1.8; color: var(--gray-600); max-width: 760px; }
.results-table th{ text-align: left; }
.results-year{ font-weight: 900; font-size: 1.05rem; color: var(--black); white-space: nowrap; }
.results-links{ display: flex; flex-wrap: wrap; gap: 8px; }
.results-links .btn{ padding: 8px 16px; font-size: .78rem; }
.btn.btn-outline-primary{ background: transparent; color: var(--blue); border-color: var(--blue); }
.btn.btn-outline-primary:hover{ background: var(--blue); color: var(--white); }
/* .data-table td a{color:var(--blue)} je špecifickejšie ako .btn — bez tohto
   by boli PDF/Online tlačidlá v tabuľkách (napr. výsledky) neviditeľné
   (modrý text na modrom pozadí). */
table.data-table td a.btn{ color: var(--white); font-weight: 800; text-decoration: none; }
table.data-table td a.btn.btn-outline-primary{ color: var(--blue); }
table.data-table td a.btn.btn-outline-primary:hover{ color: var(--white); text-decoration: none; }
.results-empty{ color: var(--gray-400); font-weight: 700; }
.results-archive{ margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--gray-200); }
.results-archive h3{ font-size: 1rem; letter-spacing: .06em; color: var(--blue); margin-bottom: 6px; }
.results-archive-note{ font-size: .85rem; color: var(--gray-600); margin-bottom: 18px; max-width: 640px; }

/* Galéria — úroveň 1: dlaždice ročníkov (/galeria) */
.gallery-year-list{ display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.gallery-year-tile{ position: relative; display: block; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--gray-100); box-shadow: var(--shadow); transition: transform .2s ease; }
.gallery-year-tile:hover{ transform: translateY(-4px); }
.gallery-year-tile img{ width: 100%; height: 100%; object-fit: cover; }
.gallery-year-tile-empty{ display: block; width: 100%; height: 100%; background: var(--gray-200); }
.gallery-year-tile-overlay{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(0deg, rgba(7,10,14,.85), rgba(7,10,14,0) 60%); }
.gallery-year-tile-year{ font-weight: 900; font-size: 1.6rem; color: var(--white); line-height: 1; }
.gallery-year-tile-count{ font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* Galéria — úroveň 2: detail ročníka (/galeria/{rok}) */
.gallery-back-link{ display: inline-block; margin-bottom: 28px; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.gallery-back-link:hover{ text-decoration: underline; }
.gallery-photos{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.gallery-photo{ display: block; width: 160px; height: 110px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease; }
.gallery-photo:hover{ transform: translateY(-3px); }
.gallery-photo img{ width: 100%; height: 100%; object-fit: cover; }
.gallery-links{ display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.gallery-links-label{ font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); margin-right: 4px; }
.gallery-links .btn{ padding: 8px 18px; font-size: .78rem; }

@media (max-width: 640px){
    .gallery-year-list{ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .gallery-photo{ width: calc(50% - 6px); height: 100px; }
}