/* ========================================================
   SPANIARD MMA GYM - GLOBAL STYLES & VARIABLES
   ======================================================== */
:root {
    --primary-red: #ff2b2b;
    --red-hover: #d62424;
    --bg-main: #050505;
    --bg-secondary: #0d0d0d;
    --bg-card: #151515;
    --bg-card-hover: #1c1c1c;
    --text-light: #ffffff;
    --text-muted: #bbbbbb;
    --text-grey: #888888;
    --border-color: #222222;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    font-family: var(--font-body);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

section {
    padding: 80px 10%;
    scroll-margin-top: 110px;
}

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

h5 {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 10px;
}

h2 {
    font-size: 52px;
    margin-bottom: 40px;
    line-height: 1.1;
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 43, 43, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.logo h2 {
    font-size: 32px;
    margin: 0;
    color: var(--primary-red);
    line-height: 1;
}

.logo p {
    font-size: 13px;
    letter-spacing: 4px;
    color: #ddd;
    margin: 0;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: auto;
}

header nav a {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

header nav a:hover::after, 
header nav a.active-link::after {
    width: 100%;
}

header nav a:hover {
    color: var(--primary-red);
}

.nav-mobile-only {
    display: none;
}

/* Специальные стили ссылок в навигации (Problém и т.д.) */
.nav-alert, .nav-extra {
    color: var(--primary-red) !important;
    font-weight: 700 !important;
    border-left: 2px solid #333 !important;
    padding-left: 15px !important;
    margin-left: 10px !important;
}

.nav-alert::after, .nav-extra::after {
    display: none; /* Убираем подчеркивание для кнопок-алертов */
}

.join-btn {
    background: var(--primary-red);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 43, 43, 0.2);
}

.join-btn:hover {
    background: var(--text-light);
    color: var(--bg-main);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-red);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    height: 80vh;
    background: url("images/hero.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    width: 220px;
    margin: 0 auto 30px auto;
    filter: drop-shadow(0 0 35px rgba(255, 43, 43, 0.6));
    animation: pulseLogo 3s infinite alternate;
}

@keyframes pulseLogo {
    0% { filter: drop-shadow(0 0 20px rgba(255, 43, 43, 0.4)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 45px rgba(255, 43, 43, 0.8)); transform: scale(1.02); }
}

.hero h1 {
    font-size: 90px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero h3 {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    line-height: 34px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-red);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 43, 43, 0.3);
}

.btn-red:hover {
    background: var(--text-light);
    color: var(--bg-main);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-dark {
    border: 2px solid var(--text-light);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-dark:hover {
    background: var(--text-light);
    color: var(--bg-main);
}

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(255, 43, 43, 0.15);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about-text p {
    line-height: 34px;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 50px;
    justify-items: center;
}

.about li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about i {
    color: var(--primary-red);
    font-size: 20px;
}

/* ========================================================
   TRAINING SECTION
   ======================================================== */
.training {
    background: var(--bg-secondary);
    background-image: radial-gradient(rgba(255, 43, 43, 0.05) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.card {
    background: var(--bg-card);
    padding: 45px 30px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 43, 43, 0.4);
    box-shadow: 0 20px 50px rgba(255, 43, 43, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card i {
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--primary-red);
    transition: var(--transition);
}

.card:hover i {
    transform: scale(1.1);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

.card p {
    color: var(--text-muted);
    line-height: 28px;
}

/* ========================================================
   COACHES SECTION
   ======================================================== */
.coaches {
    text-align: center;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.coach {
    display: block;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.coach:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 43, 43, 0.4);
    box-shadow: 0 20px 45px rgba(255, 43, 43, 0.2);
}

.coach img {
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coach:hover img {
    transform: scale(1.05);
}

.coach-info {
    padding: 30px;
    text-align: left;
}

.coach-info h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.coach-info p {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.coach-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 5px;
    transition: var(--transition);
}

.coach:hover .coach-more {
    color: var(--primary-red);
}

.coach:hover .coach-more i {
    transform: translateX(5px);
}

/* ========================================================
   PRICING SECTION
   ======================================================== */
.pricing {
    background: var(--bg-main);
    background-image: radial-gradient(rgba(255, 43, 43, 0.05) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    text-align: center;
}

.pricing-intro {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 10px auto;
    line-height: 26px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 43, 43, 0.5);
    box-shadow: 0 15px 40px rgba(255, 43, 43, 0.15);
}

.price-card.featured {
    background: linear-gradient(145deg, #1c0d0d, var(--bg-card));
    border-color: var(--primary-red);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 43, 43, 0.25);
}

.price-tag {
    position: absolute;
    top: -15px;
    background: var(--primary-red);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 43, 43, 0.4);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price-card .price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.price-card .price span {
    font-size: 16px;
    color: #ddd;
}

.price-card .price-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
    min-height: 50px;
}

.price-card .btn-red {
    padding: 14px 30px;
    font-size: 15px;
    margin-top: auto;
    width: 100%;
}

/* ========================================================
   SCHEDULE SECTION
   ======================================================== */
.schedule {
    background: var(--bg-secondary);
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 950px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.schedule-day {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    transition: var(--transition);
}

.schedule-day:hover {
    border-color: rgba(255, 43, 43, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.schedule-day h3 {
    color: var(--primary-red);
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 43, 43, 0.2);
    padding-bottom: 12px;
    text-align: center;
}

.schedule-day ul { 
    list-style: none; 
}

.schedule-day li {
    display: flex;
    gap: 15px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #ccc;
    align-items: baseline;
    flex-wrap: wrap;
}

.schedule-day li span {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 18px;
    min-width: 60px;
}

.schedule-day ul.no-time li {
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
}

.schedule-day.sunday {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

/* ========================================================
   GALLERY / SPANIARD FAMILY
   ======================================================== */
.family {
    background: var(--bg-main);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(255, 43, 43, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 5, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--text-light);
    font-size: 26px;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.gallery-load-more {
    display: inline-block;
    margin-top: 40px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--text-light);
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-load-more:hover {
    background: var(--primary-red);
    box-shadow: 0 5px 20px rgba(255, 43, 43, 0.4);
}

.gallery-load-more.hidden {
    display: none;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ========================================================
   LIGHTBOX
   ======================================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 43, 43, 0.8);
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--text-light);
    color: var(--bg-main);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 15px;
    letter-spacing: 2px;
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-secondary);
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 22px;
    width: 30px;
}

.contact-info p a {
    color: var(--text-muted);
}

.contact-info p a:hover {
    color: var(--primary-red);
}

.map iframe {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* ========================================================
   COACH DETAIL PAGE
   ======================================================== */
.coach-detail {
    padding: 80px 5% 60px;
    background: radial-gradient(circle at top right, rgba(255, 43, 43, 0.05) 0%, var(--bg-main) 60%);
    min-height: 100vh;
}

.coach-detail > div {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.back-link:hover {
    color: var(--primary-red);
    transform: translateX(-5px);
}

.coach-detail-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.coach-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    pointer-events: none;
}

.coach-detail-image img {
    border-radius: 20px;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 130px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.coach-detail-image:hover img {
    transform: scale(1.03);
}

.coach-detail-info h5 {
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.coach-detail-info h2 {
    margin-bottom: 20px;
    font-size: 48px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.coach-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    color: #ddd;
    font-size: 15px;
    margin-bottom: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.coach-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.03);
}

.coach-detail-meta i {
    color: var(--primary-red);
}

.specialization {
    display: inline-block;
    background: rgba(255, 43, 43, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 15px 20px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 30px 0;
    font-size: 1.05rem;
    border-radius: 0 8px 8px 0;
    text-transform: none;
}

.coach-detail-bio {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
    color: #ccc;
    line-height: 1.7;
    font-size: 16px;
}

.bio-card {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-red);
    opacity: 0;
    transition: var(--transition);
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 43, 43, 0.2);
}

.bio-card:hover::before {
    opacity: 1;
}

.bio-card h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
}

.bio-card p:last-child {
    margin-bottom: 0;
}

.coach-detail-cta {
    margin-top: 45px;
}

.coach-gallery {
    background: var(--bg-main);
    text-align: center;
    padding-top: 40px;
}

.coach-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.coach-gallery .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
}

/* ========================================================
   SPONSORS PAGE (HERO & GRID)
   ======================================================== */
.sponsors-hero {
    background: radial-gradient(circle at center, #1a0505 0%, var(--bg-main) 100%);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.sponsors-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.sponsors-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 43, 43, 0.4);
    box-shadow: 0 0 40px rgba(217, 4, 41, 0.2);
}

.sponsors-info h5 {
    color: var(--primary-red);
}

.sponsors-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.sponsors-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 30px;
}

.sponsors-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.sponsors-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.sponsors-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.sponsors-links i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.sponsors-row {
    background: var(--bg-secondary);
    text-align: center;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.sponsor-card {
    flex: 0 0 240px;
    width: 240px;
    background: linear-gradient(160deg, #171717 0%, #111 100%);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sponsor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sponsor-card:hover {
    border-color: rgba(255, 43, 43, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border: 2px solid rgba(255, 43, 43, 0.5);
    box-shadow: 0 0 0 6px rgba(255, 43, 43, 0.08);
    margin-bottom: 20px;
    transition: var(--transition);
}

.sponsor-card:hover img {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 8px rgba(255, 43, 43, 0.15);
}

.sponsor-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.sponsor-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sponsor-card .sponsor-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 43, 43, 0.5);
    border-radius: 30px;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.sponsor-card .sponsor-link:hover {
    background: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 43, 43, 0.3);
}

/* ========================================================
   CUSTOM COMPONENTS (Turnaje etc.)
   ======================================================== */
.big-box {
    width: 350px;
    height: 350px;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.big-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px red, 0 0 50px red, 0 0 80px rgba(255, 0, 0, 0.6);
    border: 2px solid red;
}

.turnaj-card {
    background: var(--bg-card-hover);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.turnaj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px red, 0 0 40px red, 0 0 60px rgba(255, 0, 0, 0.5);
    border: 2px solid red;
}

.turnaj-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.turnaj-info p {
    background: var(--border-color);
    padding: 20px;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.detail {
    display: none;
    margin-top: 60px;
    background: #111;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.detail > img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 30px red;
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
    background: #000;
    padding: 60px 10% 30px 10%;
    border-top: 2px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand h2 {
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-light);
}

.footer-social:hover {
    color: var(--primary-red);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 15px;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-red);
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-copy {
    color: var(--text-grey);
    font-size: 14px;
}

/* SCROLL REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================================
   MEDIA QUERIES (CONSOLIDATED)
   ======================================================== */

@media (max-width: 1200px) {
    header nav a {
        font-size: 0.85rem;
    }
    header nav {
        gap: 15px;
    }
}

@media (max-width: 1100px) {
    header, section, footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero h1 {
        font-size: 72px;
    }
}

@media (max-width: 992px) {
    h2 { font-size: 42px; }
    .hero h1 { font-size: 60px; }
    
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about ul {
        justify-content: center;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .price-card.featured {
        transform: none;
    }
    .price-card.featured:hover {
        transform: translateY(-8px);
    }
    .contact {
        grid-template-columns: 1fr;
    }
    .coach-detail-grid {
        grid-template-columns: 1fr;
    }
    .coach-detail-image img {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }
    .sponsors-intro {
        flex-direction: column;
        text-align: center;
    }
    .sponsors-info p {
        margin: 0 auto 30px auto;
    }
    .sponsors-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section { padding: 40px 20px; }
    h2 { font-size: 34px; margin-bottom: 25px; }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .join-btn {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }

    header nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        padding: 30px 20px 40px;
        transition: left 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
        border-top: 1px solid rgba(255, 43, 43, 0.2);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    header nav.active {
        left: 0;
    }

    header nav a {
        font-size: 22px !important;
    }
    
    .nav-alert, .nav-extra {
        border-left: none !important;
        border-bottom: 2px solid #333 !important;
        padding-left: 0 !important;
        padding-bottom: 5px !important;
        margin-left: 0 !important;
    }

    .nav-mobile-only {
        display: block;
    }

    .hero {
        background-image: url("images/hero-mobile.jpg");
        background-position: center top;
        padding: 28px 20px 36px 20px;
    }
    .hero h1 { font-size: 44px; }
    .hero h3 { font-size: 20px; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .coach-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav { display: none; }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .sponsor-card {
        width: 100%;
        max-width: 400px;
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    
    .sponsor-card img {
        margin-bottom: 0;
        margin-right: 20px;
        width: 70px;
        height: 70px;
    }
    
    .sponsor-card .sponsor-link {
        margin-top: 10px;
    }

    footer {
        padding: 40px 10% 20px 10%;
    }
}

@media (max-width: 480px) {
    .logo h2 { font-size: 24px; }
    .logo img { width: 50px; height: 50px; }
    .join-btn { display: none; }
    
    .cards {
        grid-template-columns: 1fr;
    }

    section { padding: 32px 20px; }
    .hero { padding: 24px 20px 30px 20px; }
    footer { padding: 32px 8% 18px 8%; }
}