:root {
    /* Background colors */
    --bg-primary: #e7efff;      /* Light blue - main background */
    --bg-secondary: #e7efff;    /* Light blue - section backgrounds */

    /* Text colors */
    --text-primary: #8B1E1E;    /* Dark red/maroon - main text */
    --text-secondary: #8B1E1E;  /* Dark red/maroon - secondary text */
    --text-dark: #1a1a1a;       /* Near black - dark text */

    /* Accent colors */
    --accent: #6d7698;          /* Slate blue - accent/highlights */
    --accent-dark: #5a6380;     /* Darker slate - hover states */

    /* Brand colors */
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    border-radius: 3px;
}

/* ============================================
   Reusable Image Hover Effects
   ============================================ */

/* Grayscale filter that removes on hover */
.img-grayscale-hover {
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.img-grayscale-hover:hover {
    filter: grayscale(0%);
}

/* Grayscale filter with scale effect on hover */
.img-grayscale-scale-hover {
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.img-grayscale-scale-hover:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Zoom effect for gallery-style images */
.img-zoom-hover {
    transition: transform 0.6s ease;
}

.img-zoom-hover:hover {
    transform: scale(1.1);
}

/* ============================================
   Reusable Link Hover Effects
   ============================================ */

/* Link that transitions to accent color on hover */
.link-hover-accent {
    transition: color 0.3s ease;
}

.link-hover-accent:hover {
    color: var(--accent);
}

/* Arrow CTA link style (used for "→ Get in Touch" style links) */
.link-cta-arrow {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.link-cta-arrow:hover {
    color: var(--accent);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d2e1f5;
}

nav.scrolled {
    background: #d2e1f5;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .swiss-cross {
    display: none;
}

.logo-img {
    height: 85px;
    width: auto;
}

.logo .swiss-cross::before,
.logo .swiss-cross::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
}

.logo .swiss-cross::before {
    width: 8px;
    height: 18px;
    top: 5px;
    left: 10px;
}

.logo .swiss-cross::after {
    width: 18px;
    height: 8px;
    top: 10px;
    left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    /* Hover effect via .link-hover-accent class in HTML */
}

.nav-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--text-primary);
}

.menu-toggle {
    display: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #d2e1f5;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: left 0.3s ease;
}

.sidebar-nav.active {
    left: 0;
}

.sidebar-nav a {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--text-dark);
    /* Hover effect via .link-hover-accent class in HTML */
}

.sidebar-nav .sidebar-cta {
    margin-top: 2rem;
    background: var(--accent);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1rem;
    border: none;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 8rem 4rem 0;
    position: relative;
    overflow: visible;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.3s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.5s forwards;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    animation: slideUp 0.8s ease 0.7s forwards;
}

.hero-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.hero-image-left,
.hero-image-right {
    opacity: 0;
    animation: slideUp 0.8s ease 1.3s forwards;
    position: relative;
}

.hero-image-left::after,
.hero-image-right::after {
    display: none;
}

.hero-image-left {
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.hero-image-left img,
.hero-image-right img {
    width: 120%;
    height: auto;
    display: block;
    margin-left: -10%;
    object-fit: cover;
    border-radius: 3px;
}

.flipped {
    transform: scaleX(-1);
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    animation: slideUp 0.8s ease 0.9s forwards;
}

.hero-badge {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    font-weight: 700;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUp 0.8s ease 1.1s forwards;
}

.hero-cta:hover {
    background: var(--text-primary);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.2s forwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 30%);
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0;
    animation: slideUp 0.8s ease 1.2s forwards;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: var(--accent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { left: -20px; }
    50% { left: 60px; }
}

/* Alternate Section Variant (slightly lighter dark) */
.section-alt {
    background: #d2e1f5;
}

/* Content Section (for standalone text sections) */
.content-section {
    padding: 6rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Full-width Section (background spans full screen, content centered) */
.section-fullwidth {
    width: 100%;
    padding: 6rem 6rem;
}

.section-fullwidth-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-fullwidth h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.section-fullwidth p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Timeline Section */
.timeline {
    padding: 6rem 4rem;
    overflow: visible;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
}

#timelineSvgContainer {
    width: 100%;
    min-height: 300px;
}

.timeline-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.timeline-path {
    fill: none;
    stroke: var(--text-dark);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.timeline-path-highlight {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Section clickable areas */
.timeline-section-area {
    fill: transparent;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.timeline-section-area:hover {
    fill: rgba(255, 255, 255, 0.03);
}

/* Section titles */
.timeline-section-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    fill: var(--accent);
}

.timeline-section-subtitle {
    font-size: 11px;
    fill: var(--text-secondary);
}

/* Timeline points */
.timeline-point-dot {
    fill: var(--accent);
    stroke: var(--bg-primary);
    stroke-width: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
}

.timeline-point-dot:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px var(--accent));
}

.timeline-point-dot.future {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
}

.timeline-point-dot.goal {
    fill: transparent;
    stroke: var(--text-secondary);
    stroke-width: 2;
}

.timeline-point-label {
    font-size: 11px;
    fill: var(--text-primary);
    font-weight: 500;
}

.timeline-point-year {
    font-size: 9px;
    fill: var(--text-secondary);
}

.timeline-point-label.goal-label {
    fill: var(--text-secondary);
}

/* Zoom controls */
.timeline-zoom-hint {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.timeline-container.zoomed .timeline-zoom-hint,
.timeline-container.mobile-mode .timeline-zoom-hint {
    opacity: 0;
}

.timeline-zoom-out {
    position: absolute;
    top: -3rem;
    right: 0;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.timeline-container.zoomed .timeline-zoom-out {
    opacity: 1;
    visibility: visible;
}

.timeline-zoom-out:hover {
    background: var(--accent-dark);
}

/* Timeline navigation arrows */
.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-nav:hover {
    background: var(--accent-dark);
}

.timeline-nav:disabled {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}

.timeline-nav-prev {
    left: 0;
}

.timeline-nav-next {
    right: 0;
}

.timeline-container.zoomed .timeline-nav:not(:disabled),
.timeline-container.mobile-mode .timeline-nav:not(:disabled) {
    opacity: 1;
    visibility: visible;
}

/* SVG zoom states */
.timeline-svg {
    transition: transform 0.5s ease;
    transform-origin: left center;
}

.timeline-container.zoomed.zoom-section-1 .timeline-svg {
    transform: scale(2.2) translateX(0) translateY(5%);
}

.timeline-container.zoomed.zoom-section-2 .timeline-svg {
    transform: scale(2.2) translateX(-15%) translateY(5%);
}

.timeline-container.zoomed.zoom-section-3 .timeline-svg {
    transform: scale(2.2) translateX(-52%) translateY(5%);
}

.goal-items {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 4rem 6rem 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #d2e1f5;
}

.about-card {
    padding: 0;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-primary);
}

.about-icon svg {
    width: 28px;
    height: 28px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid var(--text-dark);
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    /* Hover effect via .img-grayscale-hover class in HTML */
}

.about-info {
    text-align: left;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 1.4rem;
    font-weight: 500;
}

.about-cta {
    display: block;
    background: transparent;
    padding: 1rem 0;
    margin-top: 2rem;
    margin-left: 2rem;
    border: none;
    /* Uses .link-cta-arrow class for base styling and hover effect */
}

/* Values Section */
.values {
    padding: 4rem 6rem;
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-item {
    padding: 2rem;
    background: hsl(220, 100%, 94%);
    border-radius: 8px;
}

.value-item:nth-child(2n) {
}

.value-item:nth-child(5),
.value-item:nth-child(6) {
}

.value-icon {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.values-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.values-link {
    display: inline-block;
    font-weight: 400;
    /* Uses .link-cta-arrow class for base styling and hover effect */
}

.values-image {
    margin-top: 2rem;
    max-width: 100%;
}

.values-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    /* Hover effect via .img-grayscale-hover class in HTML */
}

/* Kickboxing Section */
.kickboxing {
    padding: 2rem 6rem 10rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.kickboxing-content {
    position: relative;
    z-index: 1;
}

.kickboxing-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.kickboxing-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.kickboxing-image {
    position: relative;
}

.kickboxing-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    /* Hover effect via .img-grayscale-scale-hover class in HTML */
}

/* Education Section */
.education {
    padding: 4rem 6rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.education-content {
    position: relative;
    z-index: 1;
}

.education-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.education-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.education-image {
    position: relative;
}

.education-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    /* Hover effect via .img-grayscale-scale-hover class in HTML */
}

/* Achievements Section */
.achievements {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.achievements-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.achievements-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.achievements-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 4rem;
    justify-content: center;
}

.achievement-card {
    flex: 1;
    min-height: 420px;
    background: hsl(220, 100%, 94%);
    border: none;
    border-radius: 8px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    background: hsl(220, 100%, 91%);
    transform: translateY(-5px);
}

.achievement-card .card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.achievement-card .card-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.achievement-card .card-year {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.achievement-card .card-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.achievement-card .card-result {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.achievement-card .card-preview {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.achievement-card .card-preview strong {
    color: var(--text-primary);
}

.achievement-card .card-expand {
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Modal for expanded card */
.achievement-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.achievement-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    position: relative;
    border: 1px solid var(--accent);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.achievement-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-location {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-result {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--text-dark);
}

.modal-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    white-space: pre-line;
}

.modal-quote {
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-primary);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.gallery-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.gallery-nav {
    display: flex;
    gap: 0.75rem;
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 350px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.gallery-item.position-top img {
    object-position: center top;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-section-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0 1rem;
    height: 450px;
    scroll-snap-align: start;
}

/* Gallery Video Items */
.gallery-item.gallery-video {
    flex: 0 0 253px;
    height: 450px;
    background: #000;
}

.gallery-item.gallery-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.gallery-item.gallery-video::after {
    display: none;
}

/* Video Carousel */
.video-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem 1rem;
}

.video-carousel-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem;
}

.video-track {
    display: flex;
    gap: 1rem;
    padding: 0 4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-track::-webkit-scrollbar {
    display: none;
}

.video-item {
    position: relative;
    flex: 0 0 169px;
    height: 300px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
}

.video-item.landscape {
    flex: 0 0 533px;
    height: 300px;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.video-item:hover .video-thumbnail {
    filter: brightness(0.7);
}

.video-item::after {
    content: 'Click to play';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-item:hover::after {
    opacity: 1;
}

.video-item.playing::after {
    display: none;
}

.video-play-btn {
    display: none;
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-play-btn svg path:first-child {
    fill: rgba(33, 33, 33, 0.9);
}

.video-item.playing .video-thumbnail,
.video-item.playing .video-play-btn {
    display: none;
}

.video-track .gallery-section-label {
    height: 300px;
    font-size: 1.2rem;
    padding: 0 0.75rem;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Sponsorship Section */
.sponsorship {
    padding: 10rem 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.sponsorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sponsorship-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.sponsorship-intro {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.sponsorship-intro2 {
    font-size: 1.4rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

.sponsor-features {
    display: flex;
    flex-direction: column;
}

.sponsor-feature {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--text-dark);
}

.sponsor-feature:first-child {
    border-top: 1px solid var(--text-dark);
}

.sponsor-feature h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.sponsor-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.sponsor-cta {
    padding: 1rem 0;
    margin-top: 2rem;
    margin-left: 2rem;
    /* Uses .link-cta-arrow class for base styling and hover effect */
}

.sponsorship-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Budget Section */
.budget {
    padding: 4rem 6rem;
    background: var(--bg-primary);
}

.budget-header {
    text-align: center;
    margin-bottom: 4rem;
}

.budget-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.budget-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.budget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.budget-items {
    display: flex;
    flex-direction: column;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: hsl(220, 100%, 94%);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.budget-item:first-child {
}

.budget-item-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.budget-item-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.budget-item-amount {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.budget-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--accent);
}

.budget-total h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
}

.budget-total-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.budget-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.budget-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.budget-summary p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.budget-cta {
    /* Uses .link-cta-arrow class for base styling and hover effect */
}

/* Partners Section */
.partners {
    padding: 8rem 6rem;
}

.partners h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: hsl(220, 100%, 94%);
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.partner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 2rem;
}

.partner-modal.active {
    display: flex;
}

.partner-modal-content {
    background: hsl(220, 100%, 94%);
    padding: 4rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    cursor: default;
    position: relative;
}

.partner-modal-content .partner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.partner-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.partner-modal-content .partner-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.partner-modal-content .partner-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
}

.partner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partner-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
    padding: 2rem 6rem 10rem;
    width: 100%;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text {
    text-align: left;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #E2EAFD;
    transform: translateX(10px);
}

.contact-link:hover .contact-link-icon {
    background: var(--accent-dark);
}

.contact-link-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-primary);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-link-icon svg {
    width: 18px;
    height: 18px;
}

.contact-link-text {
    flex: 1;
}

.contact-link-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.contact-link-value {
    font-size: 1rem;
    font-weight: 500;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--text-dark);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-dark);
}

/* Footer */
footer {
    padding: 2rem 6rem 0.5rem 6rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6rem;
    background: #d2e1f5;
}

.footer-left {
    flex-shrink: 0;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-logo-img {
    width: 150px;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 0;
    display: block;
}

.footer-nav {
    display: grid;
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    gap: 0.5rem 3rem;
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    /* Hover effect via .link-hover-accent class in HTML */
}

.footer-social {
    margin-left: auto;
}

.footer-social-title {
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    /* Hover effect via .link-hover-accent class in HTML */
}

.footer-social-icons svg {
    width: 28px;
    height: 28px;
}

/* Language Switch */
.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-label.active {
    opacity: 1;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent);
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--text-primary);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    @page {
        size: A4 portrait;
        margin: 15mm;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    body {
        background: white !important;
        color: #1a1a1a !important;
        font-size: 11pt;
        line-height: 1.4;
    }

    nav, .hero-scroll, .contact-form, footer, .nav-cta {
        display: none !important;
    }

    .hero {
        display: block !important;
        min-height: auto !important;
        page-break-after: always;
        padding: 0;
        background: white !important;
    }

    .hero-content {
        padding: 0 !important;
        text-align: center;
    }

    .hero-subtitle {
        color: #e63946 !important;
        animation: none !important;
        opacity: 1 !important;
        font-size: 10pt;
    }

    .hero-title {
        font-size: 48pt !important;
        color: #1a1a1a !important;
        animation: none !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
    }

    .hero-title span {
        color: #e63946 !important;
    }

    .hero-tagline {
        color: #666 !important;
        animation: none !important;
        opacity: 1 !important;
        max-width: none;
        font-size: 12pt;
    }

    .hero-stats {
        justify-content: center;
        animation: none !important;
        opacity: 1 !important;
        margin-top: 2rem;
    }

    .stat-number {
        color: #e63946 !important;
        font-size: 28pt;
    }

    .stat-label {
        color: #666 !important;
    }

    .hero-image {
        display: block !important;
        margin: 2rem auto;
        max-width: 60%;
    }

    .hero-image::before {
        display: none !important;
    }

    .hero-image img {
        animation: none !important;
        opacity: 1 !important;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .about {
        display: block !important;
        padding: 2rem !important;
        page-break-after: always;
    }

    .about-card {
        padding: 0 !important;
    }

    .about-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-icon {
        background: #e63946 !important;
    }

    .about-title {
        font-size: 28pt !important;
        color: #1a1a1a !important;
    }

    .about-text {
        color: #444 !important;
    }

    .about-bottom {
        display: flex !important;
        gap: 2rem;
    }

    .about-image {
        width: 40%;
    }

    .about-image img {
        filter: none !important;
    }

    .about-info {
        width: 60%;
    }

    .about-details {
        border-top: none !important;
    }

    .about-cta {
        display: none !important;
    }

    .detail-label {
        color: #888 !important;
    }

    .detail-value {
        color: #1a1a1a !important;
    }

    .achievements {
        background: white !important;
        padding: 0 !important;
        page-break-after: always;
    }

    .achievements-header {
        padding: 0 !important;
        margin-bottom: 2rem !important;
    }

    .achievements-title {
        font-size: 28pt !important;
        color: #1a1a1a !important;
    }

    .belt-showcase {
        display: block !important;
        padding: 0 !important;
    }

    .belt-image {
        display: none !important;
    }

    .achievements-list {
        gap: 1rem !important;
    }

    .achievement-item {
        background: #e7efff !important;
        border-left: 3px solid #e63946 !important;
        padding: 1rem !important;
        page-break-inside: avoid;
    }

    .achievement-year {
        color: #e63946 !important;
        font-size: 16pt;
    }

    .achievement-title {
        color: #1a1a1a !important;
    }

    .achievement-desc {
        color: #666 !important;
    }

    .sponsorship {
        background: #e63946 !important;
        padding: 2rem !important;
        page-break-after: always;
    }

    .sponsorship::before {
        display: none !important;
    }

    .sponsorship-content {
        display: block !important;
    }

    .sponsorship-text h2 {
        font-size: 24pt !important;
        color: white !important;
    }

    .sponsorship-text p {
        color: rgba(255,255,255,0.9) !important;
    }

    .sponsor-benefits li {
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    }

    .sponsorship-image {
        display: none !important;
    }

    .cta-button {
        display: none !important;
    }

    .contact {
        display: block !important;
        padding: 0 !important;
    }

    .contact-info h2 {
        font-size: 24pt !important;
        color: #1a1a1a !important;
    }

    .contact-info p {
        color: #666 !important;
        max-width: none;
    }

    .contact-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-link {
        background: #e7efff !important;
        flex: 1;
        min-width: 200px;
    }

    .contact-link-icon {
        background: #e63946 !important;
    }

    .contact-link-label {
        color: #888 !important;
    }

    .contact-link-value {
        color: #1a1a1a !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 8rem 3rem;
    }

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

    .hero-image::before {
        background: linear-gradient(to right, var(--bg-primary) 0%, rgba(10,10,10,0.7) 100%);
    }

    .about {
        padding: 6rem 3rem;
    }

    .about-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .values {
        padding: 6rem 3rem;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        order: 1;
    }

    .values-text {
        order: 0;
    }

    .achievements-carousel {
        flex-wrap: wrap;
        padding: 2rem;
    }

    .achievement-card {
        flex: 1 1 300px;
        max-width: none;
    }

    .content-section {
        padding: 6rem 3rem;
    }

    .section-fullwidth {
        padding: 6rem 3rem;
    }

    .timeline {
        padding: 6rem 2rem;
    }

    .sponsorship {
        padding: 6rem 3rem;
    }

    .sponsorship-content {
        grid-template-columns: 1fr;
    }

    .sponsorship-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .kickboxing {
        grid-template-columns: 1fr;
        padding: 6rem 3rem;
    }

    .kickboxing-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .education {
        grid-template-columns: 1fr;
        padding: 6rem 3rem;
    }

    .education-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact {
        padding: 6rem 3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .budget {
        padding: 6rem 3rem;
    }

    .budget-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    nav {
        padding: 1rem 1.25rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo .swiss-cross {
        width: 24px;
        height: 24px;
    }

    .logo .swiss-cross::before {
        width: 7px;
        height: 15px;
        top: 4.5px;
        left: 8.5px;
    }

    .logo .swiss-cross::after {
        width: 15px;
        height: 7px;
        top: 8.5px;
        left: 4.5px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 6rem 1.25rem 3rem;
        justify-content: flex-end;
        padding-bottom: 6rem;
    }

    .hero-image::before {
        background: linear-gradient(
            to top,
            var(--bg-primary) 0%,
            rgba(10,10,10,0.85) 40%,
            rgba(10,10,10,0.4) 100%
        );
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-sponsor-link {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .hero-scroll {
        display: none;
    }

    /* About Mobile */
    .about {
        padding: 4rem 1.25rem;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .about-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-info {
        text-align: center;
    }

    .about-details {
        gap: 0.75rem;
    }

    .detail-item {
        text-align: center;
    }

    .detail-label {
        font-size: 0.65rem;
    }

    .detail-value {
        font-size: 1.2rem;
    }

    .about-cta {
        margin-top: 1.5rem;
        margin-left: 0;
        text-align: center;
    }

    /* Values Mobile */
    .values {
        padding: 4rem 1.25rem;
    }

    .values-content {
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--text-dark);
    }

    .value-item:last-child {
        border-bottom: none;
    }

    .value-item h3 {
        font-size: 1rem;
    }

    .value-item p {
        font-size: 0.85rem;
    }

    .values-text h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .values-text p {
        font-size: 1rem;
    }

    /* Achievements Mobile */
    .achievements {
        padding: 4rem 0;
    }

    .achievements-header {
        padding: 0 1.25rem;
        margin-bottom: 3rem;
    }

    .achievements-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .belt-showcase {
        padding: 0 1.25rem;
        gap: 2rem;
    }

    .belt-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .belt-image::after {
        inset: 1rem;
    }

    .achievements-list {
        gap: 1rem;
    }

    .achievement-item {
        padding: 1.25rem;
    }

    .achievement-year {
        font-size: 1.5rem;
    }

    .achievement-title {
        font-size: 1rem;
    }

    .achievement-desc {
        font-size: 0.85rem;
    }

    /* Content Section Mobile */
    .content-section {
        padding: 4rem 1.25rem;
    }

    .content-section h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    /* Full-width Section Mobile */
    .section-fullwidth {
        padding: 4rem 1.25rem;
    }

    .section-fullwidth h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .section-fullwidth p {
        font-size: 1rem;
    }

    /* Timeline Mobile */
    .timeline {
        padding: 4rem 1rem;
    }

    .timeline-container {
        width: 100%;
    }

    /* Hide zoom hint and zoom out button on mobile */
    .timeline-zoom-hint {
        display: none;
    }

    .timeline-zoom-out {
        display: none;
    }

    /* Show navigation arrows by default on mobile (except when disabled) */
    .timeline-nav:not(:disabled) {
        opacity: 1;
        visibility: visible;
    }

    .timeline-section-title {
        font-size: 10px;
    }

    .timeline-section-subtitle {
        font-size: 8px;
    }

    .timeline-point-label {
        font-size: 8px;
    }

    .timeline-point-year {
        font-size: 7px;
    }

    /* Gallery Mobile */
    .gallery {
        padding: 4rem 0;
    }

    .gallery-header {
        padding: 0 1.25rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .gallery-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .gallery-track {
        padding: 0 1.25rem;
        gap: 1rem;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 360px;
    }

    .gallery-section-label {
        font-size: 1.2rem;
        height: 360px;
        padding: 0 0.75rem;
    }

    .gallery-item.gallery-video {
        flex: 0 0 203px;
        height: 360px;
    }

    .video-carousel-header {
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .video-track {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }

    .video-item {
        flex: 0 0 135px;
        height: 240px;
    }

    .video-item.landscape {
        flex: 0 0 427px;
        height: 240px;
    }

    .video-track .gallery-section-label {
        height: 240px;
        font-size: 1rem;
    }

    .lightbox-nav {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }

    /* Kickboxing Mobile */
    .kickboxing {
        padding: 4rem 1.25rem;
        gap: 2rem;
    }

    .kickboxing-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .kickboxing-text {
        font-size: 1rem;
    }

    .kickboxing-image {
        max-width: 280px;
    }

    /* Education Mobile */
    .education {
        padding: 4rem 1.25rem;
        gap: 2rem;
    }

    .education-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .education-text {
        font-size: 1rem;
    }

    .education-image {
        max-width: 280px;
    }

    /* Sponsorship Mobile */
    .sponsorship {
        padding: 4rem 1.25rem;
    }

    .sponsorship-content {
        gap: 2rem;
    }

    .sponsorship-text h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .sponsorship-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .sponsorship-intro2 {
        font-size: 1rem;
        margin-bottom: 2rem;
        font-weight: bold;
    }

    .sponsor-features {
        gap: 1.25rem;
    }

    .sponsor-feature-text h3 {
        font-size: 1rem;
    }

    .sponsor-feature-text p {
        font-size: 0.9rem;
    }

    .sponsor-cta {
        margin-left: 0;
    }

    .sponsor-benefits li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }

    .cta-button {
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .sponsorship-image {
        max-width: 250px;
    }

    /* Budget Mobile */
    .budget {
        padding: 4rem 1.25rem;
    }

    .budget-header {
        margin-bottom: 2.5rem;
    }

    .budget-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .budget-header p {
        font-size: 1rem;
    }

    .budget-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .budget-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .budget-item-amount {
        font-size: 1.1rem;
    }

    .budget-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .budget-summary h3 {
        font-size: 1.3rem;
    }

    /* Partners Mobile */
    .partners {
        padding: 4rem 1.25rem;
    }

    .partners h2 {
        margin-bottom: 2.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-card {
        padding: 2rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 4rem 1.25rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .contact-links {
        gap: 0.5rem;
    }

    .contact-link {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
    }

    .contact-link-icon {
        width: 32px;
        height: 32px;
    }

    .contact-link-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-link-value {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-submit {
        padding: 1rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 1.25rem;
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    /* Modal Mobile - Enable scrolling for overflow content */
    .achievement-modal {
        padding: 1rem;
        overflow-y: auto;
        align-items: flex-start;
    }

    .modal-content {
        padding: 2rem;
        margin: auto;
        max-height: none;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .partner-modal {
        padding: 1rem;
        overflow-y: auto;
        align-items: flex-start;
    }

    .partner-modal-content {
        padding: 2rem;
        margin: auto;
    }

    .partner-modal-content .partner-image {
        max-height: 250px;
        margin-bottom: 1.5rem;
    }

    .partner-modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .partner-modal-content .partner-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .partner-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-images img:nth-child(2) {
        margin-top: 0;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-images img:hover {
        filter: grayscale(30%);
        transform: none;
    }

    .achievement-item:hover {
        transform: none;
    }

    .contact-link:hover {
        transform: none;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .hero-content {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }

    nav {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}
