:root {
    --primary: #e74c3c;
    /* Red */
    --black: #111;
    --dark-gray: #1e272e;
    --white: #fff;
    --gray: #95a5a6;
    --font-main: 'Cairo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f1f2f6;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.center {
    text-align: center;
}

/* Header */
.sport-header {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-primary {
    color: var(--primary);
}

.logo i {
    font-size: 2.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.logo span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.lang-btn {
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
}

.lang-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Hero */
.hero-sport {
    height: 700px;
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(231, 76, 60, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 900;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #c0392b;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--dark-gray);
}

.bg-red {
    background-color: var(--primary);
}

.text-white {
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: inherit;
}

.divider {
    width: 60px;
    height: 5px;
    background-color: var(--primary);
    margin: 0 auto 50px;
}

.card-sport {
    background-color: #2f3640;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card-sport:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-sport img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-body h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.stat-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact */
.contact-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-sport {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.c-item i {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.btn-map {
    background-color: var(--black);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    display: block;
}

.btn-map:hover {
    background-color: var(--primary);
}

.map-container-sport {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer-sport {
    background-color: var(--black);
    color: var(--gray);
    text-align: center;
    padding: 20px;
}

/* Response */
@media (max-width: 768px) {
    .container.justify-between {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .contact-cont {
        grid-template-columns: 1fr;
    }
}