:root {
    --primary-green: #a3e635; /* Neon Lime Green */
    --bg-dark: #050505;
    --bg-card: #111316;
    --text-white: #ffffff;
    --text-grey: #9ca3af;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-green {
    color: var(--primary-green);
}

.bold {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    border-bottom: 2px solid #1f2937;
    overflow: hidden; /* Important for the zoom effect */
}

/* Background Slider Container */
.hero-bg-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* 16s total: 4s per image. Animation includes fade and slight zoom */
    animation: fadeZoom 16s infinite;
}

/* Animation Delays for each slide */
.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 4s; }
.slide-3 { animation-delay: 8s; }
.slide-4 { animation-delay: 12s; }

/* Keyframes for Fade and Zoom */
@keyframes fadeZoom {
    0% { 
        opacity: 0; 
        transform: scale(1); 
    }
    5% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
    25% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
    30% { 
        opacity: 0; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: scale(1); 
    }
}

/* Dark Overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0.5;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.location-badge i {
    font-size: 1.2rem;
}

/* Sports Icons Row */
.sports-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    background: rgba(163, 230, 53, 0.1);
    backdrop-filter: blur(5px);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
}

/* --- Main Content --- */
.main-content {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.small-label {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.big-headline {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 600px;
}

.about-map {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.map-graphic {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon {
    font-size: 8rem;
    color: #1f2937;
    filter: drop-shadow(0 0 10px rgba(163, 230, 53, 0.3));
}

.map-ping {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-label h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.map-label p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-line {
    width: 30px;
    height: 3px;
    background-color: var(--primary-green);
    margin-top: auto;
}

/* Footer Mission */
.mission-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #1f2937;
    padding-top: 40px;
}

.mission-footer p {
    line-height: 1.4;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-grid {
        flex-direction: column;
        text-align: center;
    }
    .about-map {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .sports-icons-row {
        flex-wrap: wrap;
    }
    .divider {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .big-headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 2.5rem;
    }
}