/* ========================================
   BIEG ANIOŁÓW - Custom Styles
   Mobile-first: mobile <992px, desktop 992px+
   ======================================== */

/* ========================================
   COLOR PALETTE & VARIABLES
   ======================================== */
:root {
    --color-primary: #144f80;
    --color-primary-light: #4dc0ee;
    --color-primary-lighter: rgba(90, 133, 177, 0.1);
    --color-accent: #f9cc24;
    --color-accent-shadow: #fff4d3;
    --color-text-dark: #2f4858;
    --color-text-body: rgba(61, 129, 179, 0.8);
    --color-text-muted: rgba(47, 72, 88, 0.5);
    --color-white: #ffffff;
    --color-bg-light: rgba(90, 133, 177, 0.1);

    --font-primary: 'Lexend', sans-serif;

    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --container-padding: 16px;
    --section-padding: 60px 0;
    --border-radius: 16px;
    --border-radius-pill: 30px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SCROLL MARGIN FOR ANCHOR LINKS
   ======================================== */
section {
    scroll-margin-top: 100px;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.news .container {
    padding-right: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 28px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 2px 5px 2px var(--color-accent-shadow);
}

.btn--primary:hover {
    background: #e6bb1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px 2px var(--color-accent-shadow);
}

.btn--large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 900;
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    padding: 14px 40px;
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-pill);
    font-weight: 700;
}

.btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.hero .btn--primary, .footer-cta__content .btn--primary {
    box-shadow: 0 2px 5px 2px #c89e0070;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
}

.section-title__line {
    display: block;
    width: 90px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 12px;
}

.section-title__line--center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-text-body);
    font-size: 15px;
    margin-top: 16px;
    max-width: 700px;
    text-align: center;
    line-height: 1.5;
}

.section-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary-light);
    white-space: nowrap;
    margin-top: 8px;
}

.section-header__link:hover {
    color: var(--color-primary);
}

.section-header__link .material-icons-outlined {
    font-size: 18px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--container-padding);
    max-width: 1640px;
    margin: 0 auto;
}

.navbar__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo-img {
    height: 36px;
    width: auto;
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar__logo-text--top {
    font-family: var(--font-primary);
    font-weight: 900;
    font-style: italic;
    font-size: 18px;
    color: var(--color-primary-light);
}

.navbar__logo-text--bottom {
    font-family: var(--font-primary);
    font-weight: 900;
    font-style: italic;
    font-size: 14px;
    color: var(--color-primary-light);
}

/* Hamburger */
.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar__toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu */
.navbar__menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.navbar__menu-wrapper.active {
    right: 0;
}

.navbar__menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.navbar__menu > .menu-item > a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-bg-light);
}

.navbar__menu > .menu-item > a:hover {
    color: var(--color-primary-light);
}

/* Submenu - mobile */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: 'expand_more';
    font-family: 'Material Icons Outlined';
    font-size: 20px;
    float: right;
    transition: var(--transition);
}

.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

.sub-menu {
    display: none;
    padding-left: 20px;
}

.sub-menu.active {
    display: block;
}

.sub-menu .menu-item a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.sub-menu .menu-item a:hover {
    color: var(--color-primary-light);
}

.navbar__cta {
    align-self: flex-start;
    margin-top: 10px;
}

/* Overlay */
.navbar__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.navbar__overlay.active {
    display: block;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(77 192 238 / 70%), rgb(20 79 128 / 80%));
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 40px var(--container-padding);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
}

.hero__text {
    max-width: 600px;
}

.hero__logo-large {
    position: relative;
    max-width: 500px;
    margin: 24px auto;
}

.hero__logo-large img {
    max-width: 100%;
    height: auto;
}

.hero__logo-line1 {
    margin-bottom: 4px;
}

.hero__logo-wing {
    position: absolute;
    right: -40px;
    top: -10px;
    width: 60px;
    height: auto;
}

.hero__logo-line2 {
    margin-top: 0;
}

.hero__description {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero__description strong {
    font-weight: 700;
}

.hero__illustration {
    display: none;
    position: relative;
}

.hero__illustration {
    position: relative;
    display: flex;
}

.runner-decoration {
    position: relative;
    bottom: 20px;
    right: 0;
}

.hero__wings {
    max-width: 200px;
    filter: brightness(0) saturate(100%) invert(98%) sepia(100%) saturate(8%) hue-rotate(171deg) brightness(102%) contrast(103%);
    position: absolute;
    top: 0;
}

.runner-decoration img {
    max-height: 40vh;
}

.bottom-circles {
    display: none;
}

.hero__badge {
    position: absolute;
    bottom: 0;
    width: 120px;
    height: 100px;
    left: 0;
}

.hero__badge-day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.hero__badge-month {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero__badge-year {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* ========================================
   NEWS / AKTUALNOŚCI
   ======================================== */
.news {
    background: var(--color-bg-light);
    padding: var(--section-padding);
}

.news__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.news__grid::-webkit-scrollbar {
    display: none;
}

.news-card {
    width: 85%;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12), 0 6px 10px rgba(0, 0, 0, 0.1);
}

.news-card__image {
    height: 200px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__body {
    padding: 15px;
}

.news-card__category {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 12px;
}

.news-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-card__excerpt {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.4;
    margin-bottom: 16px;
}

.news-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.news-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.news-card__date .material-icons-outlined {
    font-size: 18px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent);
}

.news-card__link:hover {
    color: #e6bb1e;
}

.news-card__link .material-icons-outlined {
    font-size: 18px;
}

/* ========================================
   MEDIA + TEXT (reusable: left/right)
   ======================================== */
.media-text {
    padding: var(--section-padding);
}

.media-text h2:after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 12px;
}

.media-text__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media-text__media {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.media-text__media img,
.media-text__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-text__media--video {
    aspect-ratio: 1 / 1;
}

.media-text__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 30px 0;
}

.media-text__content .section-title {
    margin-bottom: 0;
}

.media-text__lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-body);
    line-height: 1.6;
}

.media-text__content p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.6;
}

.media-text__payment-logos img {
    max-width: 100%;
    margin: 10px 0;
}

/* ========================================
   SCHEDULE / HARMONOGRAM
   ======================================== */
.schedule {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.schedule__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.schedule__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.schedule__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 79, 128, 0.9), rgba(20, 79, 128, 0.85));
    z-index: 1;
}

.schedule .container {
    position: relative;
    z-index: 2;
}

.section-title--white {
    color: var(--color-white);
}

.schedule__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
}

.schedule__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 950px;
    margin: 0 auto;
}

.schedule__card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.schedule__card-time {
    flex-shrink: 0;
    width: 100px;
    padding: 20px;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.schedule__card-info {
    flex: 1;
    padding: 16px 20px;
}

.schedule__card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.schedule__card-info p {
    font-size: 13px;
    color: var(--color-primary-light);
}

.schedule__card-icon {
    flex-shrink: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

.schedule__card-icon .material-icons-outlined {
    font-size: 28px;
    color: var(--color-accent);
}

/* ========================================
   DISTANCES / DYSTANSE
   ======================================== */
.distances {
    padding: var(--section-padding);
}

.distances__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.distance-card {
    background: var(--color-white);
    border: 2px solid var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.distance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.distance-card--featured {
    position: relative;
    background: var(--color-bg-light);
}

.distance-card__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distance-card__icon .material-icons-outlined {
    font-size: 24px;
    color: var(--color-white);
}

.distance-card__km {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.distance-card__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 16px;
}

.distance-card__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* ========================================
   GALLERY / GALERIA TRASY
   ======================================== */
.gallery {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.gallery__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.gallery__tab {
    background: transparent;
    border: 2px solid var(--color-primary-light);
    color: var(--color-primary-light);
    padding: 8px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__tab.active,
.gallery__tab:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.gallery__item {
    padding: 5px;
}

.gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Owl Carousel overrides */
.gallery__carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery__carousel .owl-nav button.owl-prev,
.gallery__carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: var(--color-primary-light) !important;
    color: var(--color-white) !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery__carousel .owl-nav button.owl-prev:hover,
.gallery__carousel .owl-nav button.owl-next:hover {
    background: var(--color-primary) !important;
}

.gallery__carousel .owl-dots {
    display: none;
}

.gallery__carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--color-primary-light) !important;
    opacity: 0.4;
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.gallery__carousel .owl-dot.active span {
    opacity: 1;
    background: var(--color-accent) !important;
}

/* ========================================
   STARTER PACK / PAKIET STARTOWY
   ======================================== */
.starter-pack {
    padding: var(--section-padding);
}

.starter-pack__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.starter-pack__item {
    background: var(--color-white);
    border: 1px solid var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.starter-pack__item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.starter-pack__icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.starter-pack__icon .material-icons-outlined {
    font-size: 28px;
    color: var(--color-primary-light);
}

.starter-pack__item h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.starter-pack__item p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.starter-pack__images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.starter-pack__images img {
    max-height: 250px;
    width: auto;
}

.starter-pack__item.type_image .starter-pack__icon {
    width: 120px;
    height: 120px;
}

.starter-pack__item.type_image .starter-pack__icon img {
    border-radius: 12px;
}

/* ========================================
   PARTNERS / PARTNERZY
   ======================================== */
.partners {
    padding: var(--section-padding);
    background: #eef3f7;
}

.partners__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partners__column {
    text-align: center;
}

.partners__column .section-title {
    font-size: 22px;
    margin-bottom: 24px;
    color: #5a85b159;
}

.partners__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partners__logos img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(30%);
}

.partners__logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partners__divider {
    width: 100%;
    height: 1px;
    background: rgba(20, 79, 128, 0.15);
}

.partners__cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   FOOTER CTA
   ======================================== */
.footer-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.footer-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgb(77 192 238 / 70%), rgb(20 79 128 / 80%));
}

.footer-cta .container {
    position: relative;
    z-index: 2;
}

.footer-cta__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-cta__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.footer-cta__logo img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.footer-cta__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    max-width: 640px;
    line-height: 1.6;
}

.footer-cta__badge {
    display: none;
}

/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 0;
    font-size: 14px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.site-footer__col h4 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.site-footer__col p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__col ul li a:hover {
    color: var(--color-accent);
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__contact .material-icons-outlined {
    font-size: 18px;
    color: var(--color-primary-light);
    margin-top: 2px;
}

.site-footer__contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.site-footer__social a:hover {
    background: var(--color-accent);
}

.site-footer__social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.site-footer__social a:hover img {
    filter: none;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.site-footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   DESKTOP STYLES (992px+)
   ======================================== */
@media (min-width: 992px) {

    :root {
        --container-padding: 20px;
        --section-padding: 80px 0;
    }

    .news .container {
        padding-right: 20px;
    }

    /* Navigation */
    .navbar {
        padding: 0 80px;
        height: 100px;
    }

    .navbar__logo-img {
        height: 45px;
    }

    .navbar__logo-text--top {
        font-size: 24px;
    }

    .navbar__logo-text--bottom {
        font-size: 20px;
    }

    .navbar__toggle {
        display: none;
    }

    .navbar__menu-wrapper {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        overflow: visible;
    }

    .navbar__menu {
        flex-direction: row;
        gap: 36px;
    }

    .navbar__menu > .menu-item > a {
        padding: 0;
        font-size: 16px;
        border-bottom: none;
        position: relative;
    }

    .navbar__menu > .menu-item:not(.menu-item-has-children) > a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-accent);
        transition: var(--transition);
    }

    .navbar__menu > .menu-item:not(.menu-item-has-children) > a:hover::after {
        width: 100%;
    }

    /* Submenu - desktop hover */
    .menu-item-has-children > a::after {
        content: 'expand_more';
        font-family: 'Material Icons Outlined';
        font-size: 18px;
        float: none;
        position: static;
        vertical-align: middle;
        margin-left: 2px;
        width: auto;
        height: auto;
        background: none;
    }

    .menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }

    .sub-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: var(--color-white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sub-menu .menu-item a {
        padding: 8px 20px;
        font-size: 15px;
    }

    .sub-menu .menu-item a:hover {
        background: var(--color-bg-light);
        color: var(--color-primary);
    }

    .navbar__cta {
        margin-top: 0;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
    }

    .hero__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 80px 20px;
        min-height: calc(100vh - 100px);
    }

    .hero__text {
        max-width: 500px;
    }

    .hero__description {
        font-size: 18px;
    }

    .runner-decoration {
        position: absolute;
    }

    .bottom-circles {
        position: absolute;
        bottom: 0;
        right: 0;
        display: block;
        width: 50%;
    }

    .hero__illustration {
        display: block;
        position: absolute;
        right: 0;
        height: 100%;
        width: 50%;
        top: 0;
    }

    .hero__runner {
        max-height: 500px;
        width: auto;
    }

    .runner-decoration img {
        max-height: 80vh;
    }

    .hero__badge {
        bottom: 80px;
        width: 150px;
        height: 100px;
        left: 50px;
    }

    .hero__badge-day {
        font-size: 42px;
    }

    .hero__badge-month {
        font-size: 13px;
    }

    .hero__badge-year {
        font-size: 16px;
    }

    /* Section title */
    .section-title {
        font-size: 40px;
    }

    .section-header__link {
        font-size: 16px;
        margin-top: 12px;
    }

    /* News */
    .news__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        overflow: visible;
    }

    .news-card__body {
        padding: 24px;
    }

    .news-card {
        width: auto;
    }

    .news-card__image {
        height: 256px;
    }

    .news-card__footer {
        align-items: center;
        flex-direction: unset;
    }

    /* Media + Text */
    .media-text__wrapper {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .media-text__media {
        flex: 0 0 50%;
        max-width: 640px;
        aspect-ratio: 1 / 1;
    }

    .media-text__content {
        flex: 1;
        padding: 40px 68px;
    }

    .media-text.right .media-text__content {
        background: rgba(255, 255, 255, 0.85);
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }

    .media-text__lead {
        font-size: 18px;
        line-height: 1.55;
    }

    .media-text__content p {
        font-size: 18px;
        line-height: 1.55;
    }

    /* Right variant: image LEFT, text RIGHT on desktop */
    .media-text.right .media-text__media {
        order: -1;
    }

    .media-text.right .media-text__content {
        order: 1;
    }

    /* Left variant: text LEFT, image RIGHT on desktop */
    .media-text.left .media-text__media {
        order: 1;
    }

    .media-text.left .media-text__content {
        order: -1;
    }

    /* Schedule */
    .schedule__card-time {
        width: 160px;
        font-size: 24px;
        padding: 24px 30px;
    }

    .schedule__card-info h4 {
        font-size: 16px;
    }

    .schedule__card-info p {
        font-size: 14px;
    }

    .schedule__card-icon .material-icons-outlined {
        font-size: 36px;
    }

    /* Distances */
    .distances__grid {
        flex-direction: row;
        gap: 32px;
    }

    .distance-card {
        flex: 1;
        padding: 50px 35px;
    }

    .distance-card--featured {
        transform: translateY(-20px);
        padding: 60px 35px;
    }

    .distance-card--featured:hover {
        transform: translateY(-24px);
    }

    .distance-card__km {
        font-size: 36px;
    }

    /* Gallery */
    .gallery__item img {
        height: 250px;
    }

    /* Starter pack */
    .starter-pack__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .starter-pack__item {
        flex: 0 1 calc((100% - 48px) / 3);
        max-width: 380px;
    }

    .starter-pack__images img {
        max-height: 350px;
    }

    /* Partners */
    .partners__wrapper {
        flex-direction: row;
        gap: 0;
    }

    .partners__column {
        flex: 1;
        padding: 0 40px;
    }

    .partners__column .section-title {
        font-size: 28px;
    }

    .partners__divider {
        width: 1px;
        height: auto;
        align-self: stretch;
    }

    .partners__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partners__logos img {
        max-height: 100px;
    }

    /* Footer grid */
    .site-footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    /* Footer CTA */
    .footer-cta {
        padding: 120px 0;
    }

    .footer-cta__logo img {
        max-width: 640px;
    }

    .footer-cta__text {
        font-size: 18px;
    }

    .footer-cta__badge {
        display: block;
        position: absolute;
        right: 80px;
        bottom: 40px;
    }

    .footer-cta__badge .hero__badge-day {
        font-size: 42px;
    }

    .footer-cta__badge .hero__badge-month {
        font-size: 13px;
    }

    .footer-cta__badge .hero__badge-year {
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .hero__content {
        padding: 80px 180px;
    }
}

/* ========================================
   PAGE TITLE SECTION
   ======================================== */
.page-title-section {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: var(--color-primary);
}

.page-title-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-title-section__bg-img, .page-title-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.page-title-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 79, 128, 0.8), rgba(20, 79, 128, 0.6));
    z-index: 1;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section__content h1 {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}

/* ========================================
   TEXT BLOCK
   ======================================== */
.text-block {
    padding: var(--section-padding);
}

.text-block__content {
    max-width: 900px;
    margin: 0 auto;
}

.text-block__content h1,
.text-block__content h2,
.text-block__content h3,
.text-block__content h4,
.text-block__content h5,
.text-block__content h6 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.text-block__content h2 {
    font-size: 28px;
    font-weight: 900;
}

.text-block__content h3 {
    font-size: 22px;
    font-weight: 800;
}

.text-block__content p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.text-block__content ul,
.text-block__content ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.text-block__content ol {
    list-style: decimal;
}

.text-block__content li {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 8px;
}

.text-block__content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.text-block__content a:hover {
    color: var(--color-primary);
}

.text-block__content img {
    border-radius: var(--border-radius);
    margin: 24px 0;
}

/* ========================================
   BLOG ARCHIVE
   ======================================== */
.blog-archive {
    padding: var(--section-padding);
}

.blog-archive__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-card__link-wrapper {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-archive__pagination {
    margin-top: 48px;
    text-align: center;
}

.blog-archive__pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.blog-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-bg-light);
    transition: var(--transition);
}

.blog-archive__pagination .page-numbers.current,
.blog-archive__pagination .page-numbers:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.blog-archive__pagination .page-numbers.prev,
.blog-archive__pagination .page-numbers.next {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.blog-archive__empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-muted);
    font-size: 18px;
}

/* ========================================
   SINGLE POST
   ======================================== */
.single .single-post {
    padding: var(--section-padding);
}

.single-post__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.single-post__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.single-post__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.single-post__date .material-icons-outlined {
    font-size: 18px;
}

.single-post__category {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
}

.single-post__body {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.8;
}

.single-post__body h2,
.single-post__body h3,
.single-post__body h4 {
    color: var(--color-primary);
    margin: 32px 0 16px;
}

.single-post__body h2 {
    font-size: 26px;
    font-weight: 900;
}

.single-post__body h3 {
    font-size: 22px;
    font-weight: 800;
}

.single-post__body p {
    margin-bottom: 16px;
}

.single-post__body img {
    border-radius: var(--border-radius);
    margin: 24px 0;
}

.single-post__body ul,
.single-post__body ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.single-post__body ol {
    list-style: decimal;
}

.single-post__body li {
    margin-bottom: 8px;
}

.single-post__body a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.single-post__body a:hover {
    color: var(--color-primary);
}

.single-post__body blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--color-bg-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

.single-post__navigation {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-bg-light);
    flex-wrap: wrap;
}

.single-post__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.single-post__nav-link:hover {
    color: var(--color-primary-light);
}

/* Sidebar */
.single-post__sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 24px;
}

.sidebar-widget__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
}

.sidebar-widget__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.sidebar-widget__list li a {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 79, 128, 0.08);
    transition: var(--transition);
}

.sidebar-widget__list li:last-child a {
    border-bottom: none;
}

.sidebar-widget__list li a:hover {
    color: var(--color-primary-light);
}

.sidebar-widget__post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}

.sidebar-widget__post-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.sidebar-widget__count {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-left: 4px;
}

/* ========================================
   MEDIA TEXT WYSIWYG CONTENT STYLES
   ======================================== */
.media-text__content h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
}

.media-text__content .section-title__line {
    display: block;
    width: 90px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 12px;
}

.media-text__content .btn {
    margin-top: 8px;
}

/* ========================================
   FANCYBOX OVERRIDES
   ======================================== */
.gallery__item a {
    display: block;
    cursor: zoom-in;
}

/* ========================================
   DESKTOP STYLES - BLOG & SINGLE (992px+)
   ======================================== */
@media (min-width: 992px) {

    /* Page title */
    .page-title-section {
        padding: 160px 0 80px;
        min-height: 340px;
    }

    .page-title-section__content h1 {
        font-size: 48px;
    }

    /* Text block */
    .text-block__content h2 {
        font-size: 36px;
    }

    .text-block__content h3 {
        font-size: 28px;
    }

    .text-block__content p,
    .text-block__content li {
        font-size: 18px;
    }

    /* Blog archive */
    .blog-archive__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* Single post */
    .single-post__wrapper {
        flex-direction: row;
    }

    .single-post__content {
        flex: 1;
        min-width: 0;
    }

    .single-post__sidebar {
        flex: 0 0 320px;
    }

    .single-post__body {
        font-size: 17px;
    }

    /* Media text wysiwyg */
    .media-text__content h2 {
        font-size: 40px;
    }
}



@media (max-width: 425px) {
    .hero__description {
        display: none;
    }
}