@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");

:root {
    --primary-color: #ff5722;
    --dark-bg: #1a1a1a;
    --light-text: #f1f1f1;
    --accent: #ffc107;
}

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

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

header {
    background: url('../images/sports-zone/sports-zone-hero-bg.webp') center/cover no-repeat;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #e64a19;
}

section {
    padding: 2rem 1rem;
}

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

.feature-card {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.feature-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.sports-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sports-logos img {
    width: 100%;
    max-width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sports-logos img:hover {
    transform: scale(1.05);
}

.testimonials {
    background-color: #222;
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1rem;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.pages{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.pages a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }
}