﻿/* Modern CSS with Purple and Gold color theme */
:root {
    --primary-color: #4e008e;
    --secondary-color: #6b1a9b;
    --accent-color: #ffd700;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-gold: linear-gradient(135deg, var(--accent-color), #ffed4e);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    background-image: url('graphics/eagleSilhouette.png');
    background-size: 1200px 1200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    opacity: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('graphics/eagleSilhouette.png');
    background-size: 1400px 1400px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('graphics/eagleSilhouette.png');
    background-size: 1000px 1000px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.02;
    z-index: -2;
    pointer-events: none;
}

/* Floating Sport Icons */
.floating-sport-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sport-icon {
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    color: var(--primary-color);
    animation: floatAround 60s infinite linear;
}

.sport-icon:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 80s;
}

.sport-icon:nth-child(2) {
    top: 10%;
    right: 5%;
    animation-delay: -20s;
    animation-duration: 70s;
}

.sport-icon:nth-child(3) {
    bottom: 5%;
    left: 5%;
    animation-delay: -40s;
    animation-duration: 90s;
}

.sport-icon:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: -60s;
    animation-duration: 75s;
}

.sport-icon:nth-child(5) {
    top: 50%;
    left: 2%;
    animation-delay: -10s;
    animation-duration: 85s;
}

.sport-icon:nth-child(6) {
    top: 50%;
    right: 2%;
    animation-delay: -30s;
    animation-duration: 65s;
}

.sport-icon:nth-child(7) {
    top: 25%;
    left: 50%;
    animation-delay: -15s;
    animation-duration: 85s;
}

.sport-icon:nth-child(8) {
    bottom: 25%;
    right: 2%;
    animation-delay: -45s;
    animation-duration: 70s;
}

.sport-icon:nth-child(9) {
    top: 75%;
    left: 10%;
    animation-delay: -25s;
    animation-duration: 80s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    12.5% {
        transform: translate(200px, -100px) rotate(45deg);
    }
    25% {
        transform: translate(400px, 50px) rotate(90deg);
    }
    37.5% {
        transform: translate(200px, 300px) rotate(135deg);
    }
    50% {
        transform: translate(-200px, 200px) rotate(180deg);
    }
    62.5% {
        transform: translate(-400px, -100px) rotate(225deg);
    }
    75% {
        transform: translate(-200px, -300px) rotate(270deg);
    }
    87.5% {
        transform: translate(100px, -200px) rotate(315deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Header Layout */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 120px;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(78, 0, 142, 0.3));
}

/* Navigation Section */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    flex-shrink: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
    display: block;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(78, 0, 142, 0.15);
}

.nav-link.active {
    color: var(--accent-color);
    background-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 4px rgba(78, 0, 142, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 1px;
    margin: 3px 0;
}

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

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

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





















/* Navigation Styles */




.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(78, 0, 142, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile Menu Toggle */


/* Main Content */
.main-content {
    margin-top: 140px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 1rem 1rem 1rem;
    text-align: center;
    width: 100%;
    align-self: flex-start;
    margin-top: 0;
    top: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    animation: fadeInUp 1s ease 0.4s both;
    margin-top: 1.5rem;
    width: 100%;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: rgba(248, 250, 252, 0.6);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.social-link i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link.facebook:hover i {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover i {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.linkedin:hover i {
    background: #0077b5;
    color: white;
}

.social-link.youtube:hover i {
    background: #ff0000;
    color: white;
}

.social-link.github:hover i {
    background: #333;
    color: white;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: rgba(248, 250, 252, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-cashapp {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.footer-cashapp-qr {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.footer-cashapp-qr:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

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

/* Hero Calendar Section */
.hero-calendar {
    margin: 1rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    width: 100%;
}

.hero-calendar-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.calendar-iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Upcoming Events Section (for other pages) */
.upcoming-events {
    padding: 4rem 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero event cards - smaller and more compact */
.hero-events-grid .event-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-card.game {
    border-left-color: #28a745;
}

.event-card.practice {
    border-left-color: #007bff;
}

.event-card.tournament {
    border-left-color: #ffc107;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.event-type {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 1rem;
}

.event-card.game .event-type {
    background: #28a745;
}

.event-card.practice .event-type {
    background: #007bff;
}

.event-card.tournament .event-type {
    background: #ffc107;
    color: var(--text-dark);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-details > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-details i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.event-details span {
    font-weight: 500;
}

.no-events, .error-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.no-events i, .error-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.no-events h3, .error-message h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-events p, .error-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* Tablet and Medium Screen Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        gap: 1rem;
        padding: 1rem 1.5rem;
        min-height: 110px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav-list {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .merchandise-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-form-container {
        position: static;
    }
    
    .order-form {
        position: static;
    }
    
    /* Modal responsive styles */
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    #modal-image {
        height: 300px;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .modal-info p:last-child {
        font-size: 1.3rem;
    }
    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        position: relative;
        gap: 0.75rem;
        min-height: 100px;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 0;
        border-top: 1px solid #e5e7eb;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        width: 100% !important;
    }
    
    .nav-item {
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block !important;
        padding: 1rem 1.5rem !important;
        color: var(--text-dark) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
        transition: all 0.2s ease !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-link:hover {
        background: var(--accent-color);
        color: white;
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(78, 0, 142, 0.1);
        border-radius: 4px;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        background: var(--primary-color) !important;
    }
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .social-media,
    .about,
    .services {
        padding: 3rem 0;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sponsors Page Styles */
.sponsors-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.sponsors-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.sponsor-banner-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.sponsor-banner {
    position: relative;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.banner-loading {
    text-align: center;
    color: var(--text-light);
}

.no-images-message {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.no-images-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.no-images-message h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.banner-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-color);
}

.banner-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.banner-btn:active {
    transform: scale(0.95);
}

.banner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-light);
}

.sponsor-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.sponsor-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sponsor-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sponsor-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
}

/* Responsive Design for Sponsors */
@media (max-width: 768px) {
    .sponsor-banner {
        height: 200px;
    }
    
    .banner-controls {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .banner-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sponsor-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sponsors-hero {
        padding: 3rem 0;
    }
    
    .sponsors-section {
        padding: 3rem 0;
    }
}





/* Responsive Design */
    
    .main-content {
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .social-media,
    .about,
    .services {
        padding: 3rem 0;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sponsors Page Styles */
.sponsors-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.sponsors-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.sponsor-banner-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.sponsor-banner {
    position: relative;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.banner-loading {
    text-align: center;
    color: var(--text-light);
}

.no-images-message {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.no-images-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.no-images-message h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.banner-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-color);
}

.banner-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.banner-btn:active {
    transform: scale(0.95);
}

.banner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-light);
}

.sponsor-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.sponsor-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sponsor-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sponsor-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
}

/* Responsive Design for Sponsors */
@media (max-width: 768px) {
    .sponsor-banner {
        height: 200px;
    }
    
    .banner-controls {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .banner-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sponsor-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sponsors-hero {
        padding: 3rem 0;
    }
    
    .sponsors-section {
        padding: 3rem 0;
    }
}

/* CashApp Section Styles */
.cashapp-section {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.cashapp-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cashapp-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cashapp-qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cashapp-qr {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.cashapp-qr:hover {
    transform: scale(1.05);
}

/* Responsive Design for CashApp */
@media (max-width: 768px) {
    .cashapp-section {
        margin: 2rem auto 0;
        padding: 1.5rem;
    }
    
    .cashapp-qr {
        max-width: 150px;
        max-height: 150px;
    }
}

/* Eagle Background Enhancements */
.main-content {
    position: relative;
    z-index: 1;
}

.header {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 0, 142, 0.8);
    z-index: -1;
}

.service-card,
.social-link,
.calendar-info {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}








/* Join Page Styles */
.join-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.join-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.join-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Membership Tiers Styles */
.membership-tiers {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.membership-tiers h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-item {
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.tier-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-color);
}

.tier-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
}

.tier-item ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.tier-item li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tier-item li:last-child {
    margin-bottom: 0;
}

.join-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-large);
}

.join-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 0, 142, 0.1);
}

.form-group input.error {
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: 'âœ“';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.8), rgba(107, 26, 155, 0.8));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success,
.form-error {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-success i,
.form-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success h3,
.form-error h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Responsive Design for Join Page */
@media (max-width: 768px) {
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .join-form-container {
        padding: 2rem;
    }
    
    .join-hero {
        padding: 0.5rem 0;
    }
    
    .join-section {
        padding: 3rem 0;
    }
    
    .membership-tiers {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .tier-item {
        padding: 1rem;
    }
    
    .tier-item strong {
        font-size: 1rem;
    }
}
/* Updated Sponsors Styles */
.sponsors-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.join-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.sponsor-banner-container {
    max-width: 1000px !important;
}

.sponsor-banner {
    height: 400px !important;
}

/* Responsive adjustments for larger banner */
@media (max-width: 768px) {
    .sponsor-banner {
        height: 250px !important;
    }
    
    .sponsors-hero-title {
        font-size: 1.75rem;
    }
}
/* Override sponsors hero padding */
.sponsors-hero {
    padding: 0.45rem 0 !important;
    margin-top: 0 !important;
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.contact-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.social-media {
    text-align: center;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-large);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 0, 142, 0.1);
}

.contact-form .form-group input.error,
.contact-form .form-group textarea.error {
    border-color: #e74c3c;
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.8), rgba(107, 26, 155, 0.8));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-form .form-success,
.contact-form .form-error {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-form .form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form .form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form .form-success i,
.contact-form .form-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form .form-success h3,
.contact-form .form-error h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-hero {
        padding: 0.5rem 0;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.mission-section {
    padding: 4rem 0;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    background: rgba(248, 249, 250, 0.6);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

.officers-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.officer-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.officer-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.officer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.officer-card:hover .officer-photo img {
    transform: scale(1.05);
}

.officer-info {
    padding: 2rem;
}

.officer-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.officer-position {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f8d7da;
    color: #721c24;
    border-radius: 12px;
    border: 1px solid #f5c6cb;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .officers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem;
    }
    
    .mission-statement p {
        font-size: 1rem;
    }
    
    .about-hero {
        padding: 0.5rem 0;
    }
    
    /* Events section mobile styles */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-type {
        margin-left: 0;
        align-self: flex-start;
    }
    
    /* Hero calendar mobile styles */
    .hero-calendar {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .hero-calendar-title {
        font-size: 1.5rem;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .calendar-iframe-container {
        height: 400px;
        max-width: 100%;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }
    
    .calendar-iframe-container iframe {
        height: 400px !important;
    }
    
    /* Floating sport icons mobile styles */
    .sport-icon {
        font-size: 5rem;
        opacity: 0.06;
    }
    
    /* Adjust animation for mobile - smaller movement range */
    @keyframes floatAround {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }
        12.5% {
            transform: translate(100px, -50px) rotate(45deg);
        }
        25% {
            transform: translate(200px, 25px) rotate(90deg);
        }
        37.5% {
            transform: translate(100px, 150px) rotate(135deg);
        }
        50% {
            transform: translate(-100px, 100px) rotate(180deg);
        }
        62.5% {
            transform: translate(-200px, -50px) rotate(225deg);
        }
        75% {
            transform: translate(-100px, -150px) rotate(270deg);
        }
        87.5% {
            transform: translate(50px, -100px) rotate(315deg);
        }
        100% {
            transform: translate(0, 0) rotate(360deg);
        }
    }
    
    .mission-section,
    .officers-section {
        padding: 3rem 0;
    }
    
    .officer-photo {
        height: 200px;
    }
    
    .officer-info {
        padding: 1.5rem;
    }
}
/* Merchandise Page Styles */
.merchandise-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

.merchandise-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.merchandise-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.merchandise-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.merchandise-content {
    /* Left side content */
}

.order-form-container {
    position: sticky;
    top: 2rem;
}

.order-form {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.order-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.order-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.empty-order {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 0.5rem;
}

.order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.order-item-price {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.order-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dc2626;
    background: white;
    color: #dc2626;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #dc2626;
    color: white;
}

.order-item-total {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 60px;
    text-align: right;
}

.order-total {
    text-align: center;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

.submit-order-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-order-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

#modal-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    background: rgba(248, 249, 250, 0.6);
}

.modal-info {
    padding: 2rem;
    text-align: center;
}

.modal-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-info p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-info p:last-child {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.merchandise-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.merchandise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(248, 249, 250, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.item-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 0, 142, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.item-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-overlay span {
    font-size: 0.9rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merchandise-item:hover .item-image img {
    transform: scale(1.05);
}

.item-info {
    padding: 1.5rem;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.item-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-to-order-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-order-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-items {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-items i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-items h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Picture Scrollers */
.scrolling-row {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 2rem 0;
}

.scrolling-images {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1rem 0;
    overflow: hidden;
}

.scroll-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
    will-change: transform;
}

.scrolling-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.scrolling-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 3px #ffd700,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #ffd700;
}

.modal-header {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffd700;
}

.modal-title {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-close {
    color: #1a1a2e;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(26, 26, 46, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-close:hover {
    background: rgba(26, 26, 46, 0.2);
    border-color: #1a1a2e;
    transform: scale(1.1);
}

.modal-image-container {
    padding: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.modal-image {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scrolling Animations */
.scroll-left {
    animation: scrollLeft 25s linear infinite;
}

.scroll-right {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.scrolling-row:hover .scroll-left,
.scrolling-row:hover .scroll-right {
    animation-play-state: paused;
}

/* Loading spinner for scrolling images */
.scrolling-images .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
}

.scrolling-images .loading-spinner i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design for Picture Scrollers */
@media (max-width: 1024px) {
    .scrolling-row {
        height: 180px;
        margin: 1.5rem 0;
    }
    
    .scrolling-image {
        width: 150px;
        height: 150px;
    }
    
    .scroll-left,
    .scroll-right {
        animation-duration: 20s; /* Faster animation on mobile */
    }
}

@media (max-width: 768px) {
    .scrolling-row {
        height: 150px;
        margin: 1rem 0;
    }
    
    .scrolling-image {
        width: 120px;
        height: 120px;
    }
    
    .scroll-wrapper {
        gap: 1rem;
    }
}

/* Team Display Styles */
.team-display {
    display: none;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.team-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}


.player-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* Multi-Team Display Styles */
.team-section {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2rem;
}

.team-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.team-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.team-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
}

.team-info h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-info p {
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
}

.players-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* Responsive adjustments for multi-team display */
@media (max-width: 768px) {
    .team-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .team-photo {
        width: 60px;
        height: 60px;
    }
    
    .team-info h3 {
        font-size: 1.25rem;
    }
    
    .players-container {
        grid-template-columns: 1fr;
    }
}

/* Dynamic Sport Buttons */
.sport-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sport-btn {
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.sport-btn:hover {
    background: rgba(78, 0, 142, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.sport-btn.active {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.sport-btn i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sport-btn h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive sport buttons */
@media (max-width: 768px) {
    .sport-selection {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .sport-btn {
        padding: 1rem;
    }
    
    .sport-btn i {
        font-size: 1.5rem;
    }
    
    .sport-btn h3 {
        font-size: 1rem;
    }
}

/* Player Picture Styles */
.player-picture-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 249, 250, 0.6);
    border: 2px solid var(--primary-color);
    position: relative;
    flex-shrink: 0;
    margin-right: 1rem;
}

.player-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-picture:hover {
    transform: scale(1.1);
}

.player-picture-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.player-picture-placeholder svg {
    width: 70%;
    height: 70%;
    color: var(--primary-color);
    opacity: 0.6;
}

.player-number-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced player card layout */
.player-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-color);
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-name {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.player-position {
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.2;
}

.player-number-large {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Team Photo Modal Styles */
.team-photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.team-photo-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.team-photo-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background-color 0.2s ease;
}

.team-photo-close:hover {
    background: var(--accent-color);
}

.team-photo-enlarged {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(2);
    transition: transform 0.3s ease;
}

.team-photo-title {
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

/* Responsive modal */
@media (max-width: 768px) {
    .team-photo-modal-content {
        max-width: 95%;
        padding: 0.5rem;
    }
    
    .team-photo-enlarged {
        max-width: 100%;
        max-height: 400px;
        transform: scale(1.5);
    }
    
    .team-photo-title {
        font-size: 1.25rem;
    }
    
    .team-photo-close {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

/* Coaching Staff Styles */
.coaching-staff-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.coaching-staff-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.coaching-staff-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}

.coaching-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coaching-staff-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.coaching-staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.coach-photo-container {
    width: 100%;
    height: 200px;
    background: rgba(248, 249, 250, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 3px solid var(--primary-color);
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coaching-staff-card:hover .coach-photo {
    transform: scale(1.05);
}

.coach-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.coach-photo-placeholder svg {
    width: 60%;
    height: 60%;
    color: var(--primary-color);
    opacity: 0.6;
}

.coach-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coach-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.coach-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}


.coach-biography {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.no-staff-message,
.error-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.no-staff-message i,
.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.no-staff-message h3,
.error-message h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-staff-message p,
.error-message p {
    font-size: 1.1rem;
    margin: 0;
}

.error-message i {
    color: #e74c3c;
}

/* Responsive Design for Coaching Staff */
@media (max-width: 768px) {
    .coaching-staff-hero-title {
        font-size: 2rem;
    }
    
    .coaching-staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coaching-staff-card {
        margin: 0 1rem;
    }
    
    .coach-info {
        padding: 1.5rem;
    }
    
    .coach-name {
        font-size: 1.25rem;
    }
    
    .coach-title {
        font-size: 1rem;
    }
    
    .coaching-staff-section {
        padding: 3rem 0;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, rgba(78, 0, 142, 0.5), rgba(107, 26, 155, 0.5));
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.gallery-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.gallery-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.6);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Week-based gallery layout */
.gallery-grid.week-layout {
    display: block;
    grid-template-columns: none;
}

.week-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.week-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.week-header.collapsible {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.week-header.expanded {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.week-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.week-toggle {
    position: relative;
    z-index: 2;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.week-chevron {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.week-header.expanded .week-chevron {
    transform: rotate(180deg);
}

.week-header::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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.week-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.week-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.week-container {
    background: white;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.week-container.expanded {
    max-height: none;
    opacity: 1;
    padding: 2rem;
}

.week-container.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0 2rem;
    border: none;
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(248, 249, 250, 0.6);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 0, 142, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay-content {
    text-align: center;
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay-content span {
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.gallery-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}


.no-photos {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.no-photos i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.no-photos h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-photos p {
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-modal.show {
    display: flex;
}

.gallery-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 3px #ffd700,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #ffd700;
}

.gallery-modal .modal-header {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffd700;
}

.gallery-modal .modal-title {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-modal .modal-close {
    color: #1a1a2e;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(26, 26, 46, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-modal .modal-close:hover {
    background: rgba(26, 26, 46, 0.2);
    border-color: #1a1a2e;
    transform: scale(1.1);
}

.gallery-modal .modal-image-container {
    position: relative;
    padding: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gallery-modal .modal-image {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-modal .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(78, 0, 142, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
}

.gallery-modal .modal-nav:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal .modal-nav.prev {
    left: 20px;
}

.gallery-modal .modal-nav.next {
    right: 20px;
}

.gallery-modal .modal-info {
    padding: 20px;
    background: white;
    text-align: center;
}

.gallery-modal .modal-info p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.gallery-modal .modal-counter {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1.125rem;
    }
    
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .week-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .week-header {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0 0 0;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .week-header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .week-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .week-container.expanded {
        padding: 1.5rem;
    }
    
    .week-title {
        font-size: 1.25rem;
    }
    
    .week-count {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .gallery-info {
        padding: 1rem;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .gallery-description {
        font-size: 0.9rem;
    }
    
    .gallery-modal .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .gallery-modal .modal-image-container {
        min-height: 300px;
        padding: 15px;
    }
    
    .gallery-modal .modal-image {
        max-height: calc(95vh - 180px);
    }
    
    .gallery-modal .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-modal .modal-nav.prev {
        left: 15px;
    }
    
    .gallery-modal .modal-nav.next {
        right: 15px;
    }
    
    .gallery-modal .modal-info {
        padding: 15px;
    }
    
    .gallery-modal .modal-info p {
        font-size: 1rem;
    }
    
    .gallery-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
}
