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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #f67d16;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #333;
}

h1 {
    font-size: 3rem; /* Larger for hero */
}

h2 {
    font-size: 2.2rem; /* Improved proportion */
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666; /* Softer gray for readability */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Navigation Styles */
header.nav-header {
    background-color: #1f1f1f;
    padding: 20px; /* More padding for better proportion */
    text-align: center;
}

.logo {
    max-width: 180px; /* Slightly larger logo */
    margin-bottom: 15px;
}

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

nav ul li {
    display: inline-block;
    margin-right: 20px; /* More space between links */
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem; /* Larger font for nav */
}

/* Hero Section (Improved Contrast with Overlay) */
header.hero {
    background-image: url('https://pretro11.site/Images/hero.png');
    background-size: cover;
    background-position: center;
    padding: 200px 20px; /* Taller hero */
    text-align: center;
    min-height: 500px;
    position: relative; /* For overlay positioning */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Above overlay */
    max-width: 80%;
    margin: 0 auto;
}

.hero-content h1 {
    margin: 0;
    color: #fff; /* White text for high contrast */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9); /* Strong shadow to prevent blending */
    font-size: 3.5rem;
    line-height: 1.2;
}

/* Content Sections */
section {
    padding: 60px 20px; /* More padding between sections */
    background-color: #fff;
}

.container {
    max-width: 1100px; /* Wider container for better alignment */
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Softer shadow */
}

/* How to Play Section Styles */
.how-to-play {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 80px 20px; /* More vertical space */
    text-align: center;
}

.how-to-play h2 {
    font-size: 3rem; /* Larger heading */
    color: #007bff; /* Blue like screenshot */
    margin-bottom: 30px;
}

.how-to-play p {
    max-width: 900px; /* Centered and narrower for readability */
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8; /* Better line spacing */
}

.steps {
    display: flex;
    justify-content: center; /* Center alignment */
    flex-wrap: wrap;
    gap: 30px; /* More space between cards */
}

.step {
    background-color: #fff;
    border-radius: 15px; /* Softer corners */
    padding: 25px;
    max-width: 320px; /* Proportional width */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Deeper shadow for depth */
    text-align: center; /* Center text in cards */
    transition: transform 0.3s; /* Hover effect */
}

.step:hover {
    transform: translateY(-10px); /* Lift on hover */
}

.step-number {
    background-color: #007bff;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px; /* Centered number */
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #666;
}

.step img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px; /* More space above image */
}

/* Contact Form Styles */
.contact-us {
    text-align: center;
}

.contact-us h1 {
    color: #f67d16; /* Orange for "Contact Us" */
    font-size: 2rem;
}

.contact-us h2 {
    color: #000; /* Black for "Get in Touch" */
    font-size: 3rem;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: #f5f5f5; /* Light gray background */
    border-radius: 8px;
    font-size: 1rem;
    color: #777; /* Gray placeholder text */
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.agreement-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #555;
}

.submit-btn {
    background-color: #007bff; /* Blue button */
    color: white;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Footer Styles */
footer {
    background-color: #1f1f1f;
    color: white;
    padding: 60px 20px; /* More padding */
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: white;
    font-size: 1rem;
}

.social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 1.5rem;
}

.map-placeholder {
    width: 200px;
    height: 150px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px; /* More space */
    border-top: 1px solid #333;
    padding-top: 30px;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #ccc;
    line-height: 1.5; /* Better readability */
}

.talk-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 25px; /* Slightly larger button */
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.talk-btn:hover {
    background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 150px 10px;
        min-height: 400px;
    }

    section {
        padding: 40px 10px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    nav ul li {
        display: block;
        margin-bottom: 15px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 40px;
    }

    .logo {
        max-width: 140px;
    }

    .contact-us h2 {
        font-size: 2rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }

    /* Responsive for How to Play */
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Smaller on mobile to fit */
    }
}