/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --secondary: #000000;
    --light: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #777777;
    --gray-dark: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-secondary {
    background-color: var(--secondary); /* Black background */
    color: var(--light); /* White text */
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--light); /* White background on hover */
    color: var(--secondary); /* Black text on hover */
    border: 2px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Optional: Add shadow on hover */
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Navigation */
.navbar {
    background-color: var(--secondary);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
}

.logo-icon {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    margin-right: 10px;
    object-fit: contain; /* Keeps image aspect ratio */
}

.logo-icon2 {
    width: 250px; /* Adjust as needed */
    height: 250px; /* Adjust as needed */
    margin-right: 10px;
    object-fit: contain; /* Keeps image aspect ratio */
}

/* Hero Section Layout Fix */
.hero .container {
    display: flex;
    align-items: stretch; /* Make both sides equal height */
    gap: 40px;
    min-height: 400px; /* Set a minimum height for the hero */
}

.hero-content {
    flex: 1;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

/* Hero Carousel - Full Height 5:7 Aspect Ratio */
.hero-carousel {
    flex: 1;
    max-width: 30%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 5/7; /* 5:7 aspect ratio */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 107, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-carousel {
        max-width: 100%;
        min-height: 500px;
        width: 100%;
    }
    
    .carousel-container {
        aspect-ratio: 5/7; /* Wider aspect ratio on mobile */
    }
}

@media (max-width: 768px) {
    .hero .container {
        min-height: auto;
    }
    
    .hero-carousel {
        min-height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        min-height: 350px;
    }
    
    .carousel-container {
        border-radius: 8px;
    }
}

/* For responsive design */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    margin-right: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #222 100%);
    color: var(--light);
    padding: 150px 0 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.snowflake {
    font-size: 10rem;
    animation: float 6s ease-in-out infinite;
}

.soccer-ball {
    width: 120px;
    height: 120px;
    background-color: var(--light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.soccer-ball::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 50%;
    background-color: var(--secondary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* About Us Row Layout */
.about-content.row-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.about-text-column {
    flex: 1;
}

.about-visual-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-block {
    margin-bottom: 30px;
}

.text-block:last-of-type {
    margin-bottom: 35px;
}

.about-heading {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 4px;
    background-color: var(--primary);
}

.about-text-column p {
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 0;
}

.about-image {
    width: 100%;
}

.image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* Row Stats Layout */
.about-stats.row-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
}

.about-stats.row-stats .stat-item {
    background-color: var(--gray-light);
    border-radius: 6px;
    padding: 20px 15px;
    text-align: center;
    border-left: 3px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats.row-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-stats.row-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.about-stats.row-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 600;
}

/* Button in text column */
.about-text-column .btn {
    margin-top: 10px;
}

/* Responsive Design for Row Layout */
@media (max-width: 992px) {
    .about-content.row-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-visual-column {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .image-container img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .about-content.row-layout {
        gap: 30px;
    }
    
    .text-block {
        margin-bottom: 25px;
    }
    
    .text-block:last-of-type {
        margin-bottom: 30px;
    }
    
    .about-heading {
        font-size: 1.4rem;
    }
    
    .about-stats.row-stats {
        gap: 15px;
    }
    
    .about-stats.row-stats .stat-item {
        padding: 18px 12px;
    }
    
    .about-stats.row-stats .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-content.row-layout {
        gap: 25px;
    }
    
    .about-heading {
        font-size: 1.3rem;
        padding-left: 12px;
    }
    
    .about-heading::before {
        width: 3px;
    }
    
    .image-container img {
        height: 200px;
    }
    
    .about-stats.row-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .about-stats.row-stats .stat-item {
        padding: 15px 10px;
    }
    
    .about-stats.row-stats .stat-number {
        font-size: 1.6rem;
    }
    
    .about-stats.row-stats .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .about-stats.row-stats {
        grid-template-columns: 1fr;
    }
    
    .image-container img {
        height: 180px;
    }
}
/* Teams Section - Black Background */
.teams {
    background-color: var(--secondary);
    color: var(--light);
}

.teams .section-title {
    color: var(--light);
}

.teams .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
}

.team-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
}

.team-age {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.active {
    background-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.status-indicator.inactive {
    background-color: var(--gray);
}

.teams-cta {
    text-align: center;
    margin-top: 60px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.teams-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--light);
}

.teams-cta .btn-secondary {
    background-color: var(--light);
    color: var(--secondary);
    border: 2px solid var(--light);
    font-size: 0.8rem;
}

.teams-cta .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-heading::before {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        height: 4px;
        width: 60px;
    }
    
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 1.5rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .teams-cta {
        padding: 25px 20px;
    }
}

/* Schedule Section */
.schedule-container {
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    display: flex;
    background-color: var(--light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
    border-left: 4px solid var(--primary);
}

.game-card.featured {
    border-left: 4px solid var(--secondary);
    background-color: #fff9f2;
}

.game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 6px;
    padding: 15px;
    min-width: 80px;
    margin-right: 20px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-info {
    flex: 1;
}

.game-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.game-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.game-details span {
    margin-right: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.game-details i {
    margin-right: 5px;
    color: var(--primary);
}

.game-teams {
    font-size: 0.9rem;
    color: var(--gray);
}

.game-cta {
    margin-left: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--light);
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--primary);
    color: var(--light);
}

.cta-section .btn:hover {
    background-color: var(--primary-dark);
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-icon {
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background-color: #111;
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    margin-bottom: 40px;
    margin-right: 40px;
}

.footer-description {
    margin: 20px 0;
    opacity: 0.7;
    line-height: 1.7;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    margin-right: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-column i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-cta .btn {
        display: none;
    }
    
    .hero-content {
        margin-bottom: 100px;
        margin-top: 100px;
    }

    .hero-buttons{
        display: grid;
        gap: 15px;
            justify-items: center;
    }

    .hero-buttons .btn {
        width: 70%;
        padding: 12px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 50px;
    }

        .about-header {
        text-align: center;
    }
    
    .about-content.row-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .about-text-column {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }
    
    .about-heading {
        text-align: center;
        padding-left: 0;
        margin-left: 0;
    }
    
    .about-heading::before {
        display: none; /* Remove the left orange line on mobile */
    }
    
    /* Add centered decoration for headings on mobile */
    .about-heading::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
        margin: 10px auto;
    }
    
    .text-block {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .text-block p {
        text-align: center;
        margin: 0 auto;
        max-width: 90%;
    }
    
    /* Center the button */
    .about-text-column .btn {
        display: block;
        margin: 30px auto 0;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .about-visual-column {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .image-container {
        margin: 0 auto;
        max-width: 400px;
    }
    
}

/* Sponsors Section - Colorful */
.sponsors {
    background-color: var(--light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sponsors-header {
    text-align: center;
    margin-bottom: 50px;
}

.sponsors .section-title {
    color: var(--secondary);
    margin-bottom: 15px;
}

.sponsors .section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-bottom: 50px;
}

.sponsor-item {
    width: 100%;
    height: 140px; /* Slightly taller for better logo display */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sponsor-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background-color: rgba(255, 107, 0, 0.02);
}

.sponsor-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    opacity: 1; /* Full opacity */
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo img {
    transform: scale(1.05); /* Slight scale on hover */
}

.sponsors-cta {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 107, 0, 0.02));
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 0, 0.15);
}

.sponsors-cta p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.sponsors-cta .btn {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sponsors-cta .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .sponsor-item {
        height: 130px;
    }
}

@media (max-width: 992px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .sponsor-item {
        height: 120px;
        padding: 20px;
    }
    
    .sponsor-logo img {
        max-height: 80px;
    }
    
    .sponsors-cta p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sponsor-item {
        height: 110px;
        padding: 20px;
    }
    
    .sponsor-logo img {
        max-height: 70px;
    }
    
    .sponsors-header {
        margin-bottom: 40px;
    }
    
    .sponsors-cta {
        padding: 30px;
    }
    
    .sponsors-cta p {
        font-size: 0.9rem;
    }
    
    .sponsors-cta .btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sponsor-item {
        height: 100px;
        padding: 15px;
    }
    
    .sponsor-logo img {
        max-height: 60px;
    }
    
    .sponsors-cta {
        padding: 10px 7px;
    }
    
    .sponsors-cta p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .sponsors-cta .btn {
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sponsor-item {
        height: 110px;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    
    
    .game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .game-date {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .game-info {
        margin-bottom: 20px;
    }
    
    .game-details {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
}
