/* =======================================================
   VANDE BHARAT KABADDI LEAGUE - COMPLETE RESPONSIVE CSS
   Works perfectly on ALL pages & ALL devices
   ========================================================= */

/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --secondary: #f7931e;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #fff;
    --text-dark: #333;
    --text-light: #666;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light);
}






/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVBAR === */
.navbar {
    position: fixed ;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    transition: var(--transition);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === MOBILE NAVBAR === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transform: translateX(-100%);
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        width: 80%;
        text-align: center;
    }
}

/* === HERO SECTIONS === */
.hero, .page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    min-height: 60vh;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title, .page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle, .page-hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(12px, 3vw, 18px) clamp(24px, 4vw, 40px);
    border: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* === ANIMATIONS === */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up,
.animate-slide-in-left,
.animate-slide-in-right {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-in-left {
    transform: translateX(-40px);
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    transform: translateX(40px);
    animation: slideInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* === SECTIONS === */
.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

/* === CARDS === */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

/* === STATS SECTION === */
.stats {
    background: linear-gradient(135deg, var(--light), #e9ecef);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-item h3 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === ABOUT PAGE === */
.about-content {
    padding: clamp(80px, 12vw, 120px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2, .about-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text h4 {
    color: #4a90e2;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.about-text h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: justify;
    line-height: 1.8;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image > div {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: clamp(250px, 40vw, 350px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
    padding: 2rem 1.5rem;
    color: white;
}

/* === SCHEDULE PAGE === */
.schedule-tabs, .upcoming-matches {
    background: var(--white);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-content.active {
    display: block;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-item {
    background: linear-gradient(145deg, var(--white), #fafbfc);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 1rem;
}

.match-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.match-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.team {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
    min-width: 120px;
}

.vs {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
    min-width: 40px;
}

.match-time {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.match-venue {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

/* === TEAMS PAGE === */
.teams-grid-section {
    background: var(--light);
}

.teams-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 6px solid var(--primary);
}

.team-logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--primary);
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.team-card:hover .team-logo img {
    transform: scale(1.1);
}

.team-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* === GALLERY PAGE === */
.photo-slider-section {
    padding: 60px 0;
    background: var(--light);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: clamp(220px, 35vw, 320px);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.85);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    transition: var(--transition);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === MOBILE NAVBAR === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transform: translateX(-100%);
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        width: 80%;
        text-align: center;
    }
}

/* === HERO SECTIONS === */
.hero, .page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    min-height: 60vh;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title, .page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle, .page-hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(12px, 3vw, 18px) clamp(24px, 4vw, 40px);
    border: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* === ANIMATIONS === */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
    }
}




.contact-hero {
   background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #f7931e;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931e, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-details strong {
    color: #f7931e;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: white;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-link.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.youtube { background: #ff0000; }
.social-link.linkedin { background: #0077b5; }

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f7931e;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-social-links a:nth-child(1) { background: #f7931e; }
.footer-social-links a:nth-child(2) { background: #3b5998; }
.footer-social-links a:nth-child(3) { background: #1da1f2; }
.footer-social-links a:nth-child(4) { background: #f7931e; }
.footer-social-links a:nth-child(5) { background: #0077b5; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;

    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f7931e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .contact-hero {
        padding: 120px 0 80px;
        margin-top: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}





.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.logo span {
    font-family: 'Arial Black', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}
/* 
/* === HAMBURGER MENU (MOBILE) === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 4px;
    transition: var(--transition);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
} */

/* === SCHEDULE HERO === */
.schedule-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.schedule-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.schedule-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* === SCHEDULE TABS === */
.schedule-tabs {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, #f0f4f8 100%);
    position: relative;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tab-btn {
    padding: 16px 32px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* === COMING SOON MESSAGE === */
.hero-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 3rem 0 4rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary);
}

/* === MOBILE RESPONSIVE === */
/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .tab-buttons {
        gap: 0.8rem;
    }
    
    .tab-btn {
        padding: 14px 24px;
        font-size: 1rem;
        flex: 1;
        min-width: 140px;
    }
}

/* === MOBILE PHONES === */
@media (max-width: 768px) {
    /* 🔥 WORKING HAMBURGER MENU */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        /* Hidden by default on mobile */
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(20px);
        z-index: 999;
    }

    /* 🔥 ACTIVE MOBILE MENU */
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.3rem !important;
        padding: 1.2rem 2rem !important;
        margin: 0.5rem 0;
        width: 85%;
        text-align: center;
        border-radius: 15px;
        font-weight: 600;
    }

    /* Schedule Hero Mobile */
    .schedule-hero {
        padding: 120px 0 60px;
    }

    .schedule-hero h1 {
        font-size: 2.5rem;
    }

    /* Tabs Mobile */
    .tab-buttons {
        gap: 0.7rem;
        margin-bottom: 3rem;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
        flex: 1 1 48%;
        min-width: auto;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        padding: 1.5rem 2rem;
        margin: 2rem 1rem;
    }
}

/* === SMALL MOBILE === */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .schedule-hero {
        padding: 110px 0 50px;
    }

    .schedule-hero h1 {
        font-size: 2.2rem;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        flex: 1 1 100%;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
}

/* === MATCH CONTENT (Ready when uncommented) === */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.match-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary);
    transition: var(--transition);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.match-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.match-info {
    flex: 1;
    min-width: 0;
}

.match-time {
    display: block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team {
    font-size: 1.4rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    min-width: 160px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.team:hover::before {
    left: 100%;
}

.vs {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    padding: 1.2rem 2.5rem;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50px;
    min-width: 70px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.match-venue {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 20px;
    white-space: nowrap;
}

/* === PERFORMANCE OPTIMIZATIONS === */
* {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === LOADING STATES === */
html {
    scroll-behavior: smooth;
}

body {
    counter-reset: section;
}


