/* General Body and Container Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: #16213e;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 2px solid #0f3460;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

header h1 a {
    color: #e94560;
    text-decoration: none;
    font-size: 2em;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #e94560;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ba344d;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section Styles */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 50px 0;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Page Hero Styles (for inner pages) */
.page-hero {
    background-color: #0f3460;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1em;
}

/* Featured Games Section Styles */
.featured-games {
    padding: 40px 0;
    background-color: #0f3460;
    text-align: center;
}

.featured-games h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #e94560;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: #16213e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.game-card h3 {
    color: #e94560;
    margin-top: 0;
}

/* Venue List Styles */
.venue-list {
    padding: 40px 0;
}

.venue-card {
    background-color: #16213e;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.venue-card h3 {
    color: #e94560;
    margin-top: 0;
}

.venue-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Content Section Styles (for About, Privacy, Cookies) */
.content-section {
    padding: 40px 0;
}

.content-section h3 {
    color: #e94560;
    margin-top: 30px;
}

.content-section ul {
    list-style: disc inside;
    margin-left: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 40px 0;
}

.contact-form {
    background-color: #16213e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #0f3460;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e94560;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
}

/* Newsletter Section Styles */
.newsletter {
    background-color: #0f3460;
    padding: 50px 0;
    text-align: center;
    margin-top: 40px;
}

.newsletter h2 {
    color: #e94560;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #e94560;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.newsletter input[type="email"]:focus {
    outline: none;
    border-color: #e94560;
}

/* Footer Styles */
footer {
    background-color: #16213e;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 2px solid #0f3460;
    margin-top: 40px;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    color: #e94560;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .newsletter form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter input[type="email"],
    .newsletter .btn {
        width: 100%;
    }
}
