/* Base styles and variables */
:root {
    /* Primary Colors */
    --main-1: #AF5C50;
    /* main+1 */
    --main-0: #840000;
    /* main-0 */
    --main--1: #600000;
    /* main-1 */
    --main--2: #4F0000;
    /* main-2 */

    /* Neutral Colors */
    --white: #FFFFFF;
    /* white */
    --grey-2: #F5F7F9;
    /* grey+2 */
    --grey-1: #D2D7DC;
    /* grey+1 */
    --grey-0: #9EA8B3;
    /* grey-0 */
    --grey--1: #2A2A2A;
    /* grey-1 */
    --black: #0A0101;
    /* black */

    /* Warning Color */
    --red: #C5343A;
    /* red */

    /* Layout Constants */
    --max-width: 1440px;
    --section-padding: 128px;
    --container-padding: 160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--grey-1);
    line-height: 1.6;
    padding-top: 32px;
    /* Space for construction notice */
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Construction Notice */
.construction-notice {
    background: linear-gradient(90deg, #840000, #AF5C50, #840000);
    color: white;
    text-align: center;
    padding: 1px 0;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    animation: slideDown 0.5s ease-out;
}

.construction-notice p {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .construction-notice p {
        font-size: 12px !important;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Typography */
h1,
.hero-large {
    font-family: 'Inter', sans-serif;
    font-size: 112px;
    line-height: 102px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
}

h2,
.hero-medium {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--white);
}

.header-large {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0;
}

.header-normal {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0;
}

p,
.body-large {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
}

.body-normal {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.body-small {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--main-0);
    color: var(--white);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background-color: rgba(10, 1, 1, 0.20);
}

/* Header */
.main-header {
    position: fixed;
    top: 32px;
    /* Account for construction notice */
    width: 100%;
    z-index: 1000;
    background-color: var(--black);
    backdrop-filter: blur(4px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a,
.contact-link a {
    color: var(--grey-1);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background-color: var(--black);
    z-index: 1001;
    padding-top: 120px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-links a {
    color: var(--grey-1);
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--white);
}

.mobile-menu-links a.active {
    color: var(--main-1);
    font-weight: 600;
}

.mobile-menu-links a:last-child {
    border-bottom: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--main-0);
}

/* Hamburger Animation */
.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .construction-notice p {
        font-size: 12px !important;
    }

    .navbar {
        padding: 8px 16px;
    }

    .main-header {
        top: 24px;
    }

    .nav-links,
    .contact-link {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(0deg, rgba(10, 1, 1, 0.80) 0%, rgba(10, 1, 1, 0.80) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 64px;
    margin-top: 32px;
    /* Account for construction notice */
}

.hero-home {
    background-image: url("../assets//backgrounds/bg-home-triple-x-armwrestling.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.countdown {
    display: flex;
    gap: 4px;
}

.countdown-item {
    width: 200px;
    padding: 32px;
    background: rgba(10, 1, 1, 0.60);
    border: 5px solid var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: var(--white);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    backface-visibility: hidden;
}

.countdown-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: var(--white);
    transition: color 0.3s ease;
}

.countdown-item:hover .countdown-label {
    color: var(--main-0);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.event-started {
    font-size: 2em;
    color: #ff4d4d;
    animation: pulse 2s infinite;
    text-align: center;
    padding: 32px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.countdown-item {
    animation: fadeIn 0.5s ease-in-out;
}

.countdown {
    transition: all 0.5s ease-in-out;
}

/* Mission Section */
.mission {
    padding: var(--section-padding) var(--container-padding);
}

.mission-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Swiss Open Section */
.swiss-open {
    padding: 80vh var(--container-padding) 0;
    background-image: url("../assets/backgrounds/bg-swiss-armwrestling-open-2024.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.swiss-open-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* About Sport Section */
.about-sport {
    padding: var(--section-padding) var(--container-padding);
}

.about-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.image-content img {
    width: 460px;
    height: auto;
    object-fit: cover;
}

/* Sponsors Section */
.sponsors {
    padding: var(--section-padding) var(--container-padding);
    background-image: url("../assets/backgrounds/bg-partners-saf-swiss-armwrestling-x-triple-fitness.png");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.sponsors-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-logo {
    max-width: 404px;
    height: auto;
    margin: 32px 0;
}

/* Contact Section */
#bg-footer {
    background-image: url("../assets/backgrounds/bg-abstract-middle.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    min-height: 40vh;
}

.contact {
    padding: var(--section-padding) var(--container-padding) 0;
    position: relative;
}

.contact-details .contact {
    padding: 0;
}

.contact-info {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.contact-item {
    flex: 1;
}

.icon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--grey-1);
}

/* Footer */
.main-footer {
    padding: 64px var(--container-padding) 0px;
    border-top: 1px solid var(--main--2);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.footer-brand {
    width: 260px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 42px;
}

.footer-brand>p {
    margin: 1rem 0;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: var(--grey-1);
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a {
    margin-bottom: 16px;
    color: var(--grey-1);
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
}

.column-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--grey-0);
    font-size: 14px;
    line-height: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 0;
}

.social-icon {
    width: 20px;
}

/* Animations and Hover Effects */
.nav-links a:hover,
.contact-link a:hover,
.footer-nav a:hover {
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--main-1);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}



/* Hero Section for Events */
.events-hero {
    padding: var(--section-padding) var(--container-padding);
    background-image: url("../assets/backgrounds/bg-full-screen.png");
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    color: var(--white);
}

/* Next Event Section */
.next-event {
    padding: 0 var(--section-padding) 0 var(--container-padding);
}

.event-details {
    display: flex;
    align-items: start;
    gap: 64px;
}

.event-image img {
    width: 528px;
    height: auto;
    border-radius: 8px;
}

.event-info {
    color: var(--grey-1);
    font-size: 20px;
    margin-top: 4rem;
}

.event-date {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    background: var(--main-0);
    padding: 0 16px 0px;
    width: fit-content;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
    .event-details {
        flex-direction: column;
        align-items: center;
    }

    .event-image img {
        width: 100%;
    }

    .event-info {
        text-align: center;
    }

    .event-date {
        margin: 0 auto;
    }
    
}

.event-item .event-item-info .event-date {
    background: transparent;
}

.event-date .day {
    font-size: 52px;
}

.event-highlights h3 {
    margin: 1rem 0;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights ul li {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.highlight {
    color: var(--white);
}

/* New Event Sections */
.massive-events-banner {
    padding: 64px var(--container-padding);
    background: rgba(10, 1, 1, 0.5);
}

.banner-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.banner-image {
    width: 500px;
    height: auto;
    border-radius: 8px;
}

.banner-info h2 {
    color: var(--white);
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 24px;
}

.banner-info p {
    color: var(--grey-1);
    font-size: 20px;
    line-height: 32px;
}

.event-details-section {
    padding: 128px var(--container-padding);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.detail-card {
    background: rgba(10, 1, 1, 0.4);
    border: 1px solid var(--main-0);
    border-radius: 8px;
    padding: 32px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--main-0);
    padding-bottom: 16px;
}

.card-header h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.event-date-small {
    color: var(--main-0);
    font-size: 16px;
    font-weight: 600;
}

.card-content h4,
.card-content h5 {
    color: var(--white);
    margin-bottom: 16px;
}

.categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.category-group h5 {
    color: var(--main-0);
    margin-bottom: 12px;
}

.category-group ul {
    list-style: none;
    padding: 0;
}

.category-group li {
    color: var(--grey-1);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.category-group li:before {
    content: '•';
    color: var(--main-0);
    position: absolute;
    left: 0;
}

.prize-money {
    background: rgba(132, 0, 0, 0.2);
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--main-0);
}

.prize-money p {
    color: var(--white);
    margin: 8px 0;
}

.detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}

.event-schedule ul {
    list-style: none;
    padding: 0;
}

.event-schedule li {
    color: var(--grey-1);
    margin-bottom: 8px;
}

.schedule-section {
    padding: 128px var(--container-padding);
    background: rgba(10, 1, 1, 0.3);
}

.schedule-section h2 {
    text-align: center;
    margin-bottom: 64px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.schedule-day {
    background: rgba(10, 1, 1, 0.6);
    border: 1px solid var(--main-0);
    border-radius: 8px;
    padding: 32px;
}

.schedule-day h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(132, 0, 0, 0.2);
    border-radius: 4px;
}

.schedule-item .time {
    color: var(--main-0);
    font-weight: 600;
    font-size: 18px;
}

.schedule-item .activity {
    color: var(--white);
    font-size: 16px;
}

.registration-section {
    padding: 128px var(--container-padding);
}

.registration-content h2 {
    text-align: center;
    margin-bottom: 64px;
}

.registration-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 32px;
    background: rgba(10, 1, 1, 0.4);
    border: 1px solid var(--main-0);
    border-radius: 8px;
}

.info-item h4 {
    color: var(--main-0);
    margin-bottom: 16px;
    font-size: 20px;
}

.info-item p {
    color: var(--white);
    font-size: 18px;
}

.info-item a {
    color: var(--white);
    text-decoration: underline;
}

.info-item a:hover {
    color: var(--main-0);
}

/* Upcoming Events Section */
.upcoming-events {
    padding: var(--section-padding) var(--container-padding);
}

.selector-upcoming-events {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.selector-upcoming-events h3 {
    font-size: 36px;
}

.dropdown-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.dropdown-button {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid rgb(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
}

.dropdown-button:hover {
    border-color: rgb(255, 255, 255, 0.3);
}

.dropdown-button::after {
    content: '▼';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown-button.active::after {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-radius: 8px;
    margin-top: 8px;
    padding: 8px 0;
    display: none;
    border: 1px solid rgb(255, 255, 255, 0.1);
}

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.event-list {
    display: flex;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    border-radius: 8px;
    background: rgba(10, 1, 1, 0.4);
}

.event-item img {
    width: 528px;
    height: 293px;
    border-radius: 4px;
}

.event-item-info {
    color: var(--grey-1);
    display: flex;
    align-items: start;
    gap: 16px;
}

.divisor {
    border: 1px solid var(--grey-1);
}

.event-date-text {
    margin: .75rem 0 .5rem;
}

.event-info-column {
    display: flex;
    flex-direction: column;
}

.event-info-column p {
    font-size: 16px;
    margin: .75rem 0;
}

.event-location {
    color: var(--grey-0);
    font-size: 16px;
}
/* carousel */
.carousel-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem; /* Reduzido para mobile */
}

.header {
    text-align: center;
    margin-bottom: 2rem; /* Reduzido para mobile */
}

.header h1 {
    font-size: 2.5rem; /* Reduzido para mobile */
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.header p {
    font-size: 1rem; /* Reduzido para mobile */
    opacity: 0.9;
    padding: 0 1rem; /* Adicionado padding lateral */
}

.carousel {
    position: relative;
    margin: 0 auto;
    overflow: visible;
}

.carousel-item {
    position: relative;
    height: 300px; /* Reduzido para mobile */
    opacity: 0.3;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.carousel-item img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 4px;
    transition: height 0.4s ease;
    position: relative;
    top: 15%;
}

.carousel-item.center img {
    height: 100%;
    width: 100%;
}

.carousel-item.center {
    opacity: 1;
    transform: scale(1);
}

.tns-nav {
    text-align: center;
    margin: 1.5rem 0; /* Reduzido para mobile */
}

.tns-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: none;
    margin: 0 4px;
    padding: 0;
    transition: all 0.3s ease;
}

.tns-nav button.tns-nav-active {
    background: #ff0000;
}

/* Side images effect */
.tns-slider {
    display: flex;
    align-items: center;
}

.tns-item {
    padding: 0 5px; /* Reduzido para mobile */
}

/* Controls styling */
.tns-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.tns-controls button {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px; /* Reduzido para mobile */
    height: 35px; /* Reduzido para mobile */
    border-radius: 50%;
    color: white;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.tns-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tns-controls button[data-controls="prev"] {
    left: 10px; /* Mais próximo da borda para mobile */
}

.tns-controls button[data-controls="next"] {
    right: 10px; /* Mais próximo da borda para mobile */
}

/* Media Queries para diferentes tamanhos de tela */
@media (max-width: 768px) {
    .carousel-section {
        padding: 0.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 0.9rem;
    }
    
    .carousel-item {
        height: 250px;
    }
    
    .tns-controls button {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 200px;
    }
    
    .tns-controls button {
        width: 25px;
        height: 25px;
    }
    
    .tns-controls button[data-controls="prev"] {
        left: 5px;
    }
    
    .tns-controls button[data-controls="next"] {
        right: 5px;
    }
}
/* Vereine Page Specific Styles */
.vereine-hero {
    min-height: 80vh;
    background: linear-gradient(180deg, rgba(10, 1, 1, 0.9) 0%, rgba(10, 1, 1, 0.8) 100%),
        url('../assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--section-padding) var(--container-padding);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 64px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: var(--white);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: var(--white);
    margin-top: 16px;
}

/* Clubs Section */
.clubs-section {
    padding: var(--section-padding) var(--container-padding);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.filter-dropdown select {
    width: 300px;
    padding: 8px 16px;
    background-color: rgba(10, 1, 1, 0.20);
    border: 1px solid var(--white);
    color: var(--grey-1);
    font-size: 14px;
    line-height: 24px;
    appearance: none;
    cursor: pointer;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.club-card {
    display: flex;
    gap: 32px;
}

.club-logo {
    width: 120px;
    flex-shrink: 0;
}

.club-logo img {
    width: 100%;
    height: auto;
    border-radius: 999px;
    background: var(--main-0);
    padding: 0px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 20px;
    height: 20px;
    color: var(--grey-1);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

.club-info {
    flex: 1;
}

.club-header {
    margin-bottom: 32px;
}

.canton-label {
    display: block;
    color: var(--main-0);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.club-header h3 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details h4 {
    color: var(--grey-0);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

.contact-details a {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-decoration: underline;
}

/* Armwrestling */
/* Intro Section */
.intro-section {
    padding: 256px var(--container-padding) 128px;
}

.intro-section .content-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.intro-section .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro-section h2 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.intro-section p {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.intro-section .image-content img {
    width: 400px;
    height: 500px;
    object-fit: cover;
}

/* Rules and Safety Section */
.rules-safety-section {
    padding: 64px var(--container-padding) 128px;
}

.content-grid {
    display: flex;
    gap: 128px;
}

.rules-content,
.safety-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rules-content h2,
.safety-content h2 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.rules-list,
.safety-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item,
.safety-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-item h3,
.safety-item h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.rule-item p,
.safety-item p {
    color: var(--grey-1);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.additional-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.additional-links h4 {
    color: var(--grey-1);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.rules-link {
    color: var(--main-0);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-decoration: none;
}

.rules-link:hover {
    text-decoration: underline;
}

/* Techniques Section */
.techniques-section {
    padding: 128px var(--container-padding);
    background: var(--black);
    background: linear-gradient(180deg, rgba(10, 1, 1, 0.80) 0%, rgba(10, 1, 1, 0.80) 100%);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 128px;
}

.section-header h2 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.section-header p {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.techniques-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.techniques-row {
    display: flex;
    gap: 64px;
}

.technique-card {
    flex: 1;
    padding: 32px;
    background: rgba(10, 1, 1, 0.50);
    border: 1px solid var(--main-0);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.technique-card h3 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.technique-card p {
    color: var(--grey-1);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

/* Grip Section */
.grip-section {
    padding: 256px var(--container-padding) 128px;
}

.grip-section .content-wrapper {
    display: flex;
    gap: 64px;
}

.grip-section .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.intro-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.grip-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.grip-info h2 {
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}

.grip-info p {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

/* Responsive Styles */
@media (max-width: 1440px) {
    :root {
        --container-padding: 80px;
        --section-padding: 96px;
    }

    h1,
    .hero-large {
        font-size: 88px;
        line-height: 84px;
    }

    h2,
    .hero-medium {
        font-size: 48px;
        line-height: 52px;
    }

    .technique-card h3 {
        font-size: 48px;
        line-height: 52px;
    }

    .clubs-grid {
        gap: 48px;
    }

    .club-header h3 {
        font-size: 48px;
        line-height: 52px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-padding: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .image-content img {
        width: 100%;
        max-width: 460px;
    }

    .footer-nav {
        gap: 24px;
    }

    .footer-nav a {
        font-size: 24px;
    }

    .countdown-item {
        width: 160px;
        padding: 24px;
    }

    .countdown-number {
        font-size: 48px;
        line-height: 48px;
    }

    .content-grid {
        gap: 64px;
    }

    .techniques-row {
        gap: 32px;
    }

    .clubs-grid {
        gap: 32px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .registration-info {
        grid-template-columns: 1fr;
    }

    .banner-info h2 {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width: 992px) {

    h1,
    .hero-large {
        font-size: 64px;
        line-height: 68px;
    }

    h2,
    .hero-medium {
        font-size: 40px;
        line-height: 44px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .intro-section .content-wrapper,
    .content-grid,
    .grip-section .content-wrapper {
        flex-direction: column;
    }

    .intro-section .image-content img,
    .grip-section .image-content img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .technique-card h3 {
        font-size: 36px;
        line-height: 40px;
    }

    .clubs-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --section-padding: 64px;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .countdown-item {
        width: calc(50% - 8px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .mission-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .swiss-open-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .techniques-row {
        flex-direction: column;
    }

    .technique-card {
        padding: 24px;
    }

    .grip-info h2 {
        font-size: 48px;
        line-height: 52px;
    }

    .section-header {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .filter-dropdown select {
        width: 100%;
    }

    .club-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-details {
        align-items: center;
    }

    .stat-number {
        font-size: 48px;
        line-height: 52px;
    }

    .categories {
        gap: 16px;
    }

    .card-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .banner-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {

    h1,
    .hero-large {
        font-size: 48px;
        line-height: 52px;
    }

    h2,
    .hero-medium {
        font-size: 32px;
        line-height: 36px;
    }

    p,
    .body-large {
        font-size: 16px;
        line-height: 24px;
    }

    .countdown-item {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .sponsor-logo {
        max-width: 100%;
    }

    .intro-section h2,
    .rules-content h2,
    .safety-content h2,
    .section-header h2,
    .grip-info h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .technique-card h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .rule-item p,
    .safety-item p,
    .technique-card p,
    .intro-text,
    .grip-info p {
        font-size: 16px;
        line-height: 24px;
    }

    .club-header h3 {
        font-size: 36px;
        line-height: 40px;
    }

    .contact-details p,
    .contact-details a {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 104px;
    /* Account for construction notice + header */
    left: 0;
    width: 100%;
    background-color: var(--black);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--grey-1);
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    border-bottom: 1px solid var(--main--2);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Loading and Transition Effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

:focus {
    outline: 2px solid var(--main-0);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--main-0);
    color: var(--white);
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {

    .btn,
    .nav-links,
    .contact-link,
    .social-links,
    .construction-notice {
        display: none;
    }

    body {
        color: var(--black);
        background: var(--white);
        padding-top: 0;
    }

    .container {
        width: 100%;
        max-width: none;
    }

    .main-header {
        top: 0;
    }
}