/* Import EXO Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 0px;
    unicode-bidi: isolate;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 30px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
       background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23333" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url("imgs/slider01.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Exo', sans-serif;
    font-size: 5.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #d20d0c;
    text-shadow: 2px 2px 4px rgba(12, 12, 12, 0,5);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    text-transform: uppercase;
}

/* Section Titles */
.section-title {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    background-color: #111111;
}

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

.intro-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Sports Divider */
.sports-divider {
    padding: 4rem 0;
    background-color: #000000;
}

.sports-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.sport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sport-icon:hover {
    transform: scale(1.1);
    background-color: rgba(255, 0, 0, 0.1);
}

.icon-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #111111;
}

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

.service-card {
    background-color: #222222;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.service-title {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.service-description {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
}

/* Text Block Section */
.text-block {
    padding: 5rem 0;
    background-color: #000000;
}

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

.text-paragraph {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Facts Section */
.facts {
    padding: 5rem 0;
    background-color: #111111;
}

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

.fact-box {
    background-color: #222222;
    padding: 2rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.fact-box:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.fact-number {
    font-family: 'Exo', sans-serif;
    font-size: 3rem;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 1rem;
}

.fact-label {
    font-family: 'Exo', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fact-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333333;
}

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

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-title {
    font-family: 'Exo', sans-serif;
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-text,
.footer-contact {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links a {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sports-icons {
        gap: 2rem;
    }

    .sport-icon {
        width: 80px;
        height: 80px;
    }

    .icon-img {
        max-width: 50px;
        max-height: 50px;
    }

    .services-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .sports-icons {
        gap: 1rem;
    }

    .sport-icon {
        width: 60px;
        height: 60px;
    }

    .icon-img {
        max-width: 40px;
        max-height: 40px;
    }

    .service-card,
    .fact-box {
        padding: 2rem 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.icon-img {
    transition: all 0.3s ease;
}

.icon-img:hover {
    transform: scale(1.1);
}