:root {
    --primary-color: #ffffff;
    /* White BG */
    --secondary-color: #f8f9fa;
    /* Light Grey for sections */
    --accent-color: #0f281e;
    /* Dark Forest Green */
    --text-color: #333333;
    /* Dark Grey Text */
    --font-main: 'Montserrat', sans-serif;
    --overlay-color: rgba(255, 255, 255, 0.8);
    --footer-color: #dddddd;
}

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

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
    /* Reduced base font size */
}

h1,
h2,
h3 {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: center;
    /* Centered nav links since logo is gone */
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 40, 30, 0.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Smaller font */
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero_bg.png');
    /* Keeping the same bg for now, overlay will handle lightness */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Border removed as requested */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), var(--primary-color));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 250px;
    /* Much smaller logo */
    width: 100%;
    margin-bottom: 3rem;
    /* More space below */
    margin-top: 2rem;
    /* More space above if needed, though flex centers it */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero p {
    font-size: 1rem;
    /* Same as standard text */
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.8;
    max-width: 600px;
}

.hero p strong {
    font-weight: 700;
    color: #000;
}

/* Sub description styling */
.sub-description {
    font-size: 0.9rem;
    /* Standard body size small */
    max-width: 600px;
}

/* Section General */
section {
    padding: 4rem 2rem;
    /* Reduced padding */
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--accent-color);
}

.section-title::before,
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

/* Content Layout (Image + Text) */
.content-wrapper {
    display: flex;
    flex-direction: column;
    /* Stack vertically for glyphs layout */
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    /* Center text since images are gone */
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper.right-align {
    flex-direction: row;
}

.content-wrapper.left-align {
    flex-direction: row-reverse;
}

.section-image {
    display: none;
    /* Hidden as requested */
}

/* New Glyph Styling */
.section-glyph {
    width: 64px;
    height: 64px;
    fill: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.section-glyph:hover {
    transform: scale(1.1);
}

.section-image:hover {
    transform: scale(1.02);
}

.section-lead {
    font-size: 1rem;
    /* Standard readable size */
    flex: 1;
}

/* About/Explore/Play Sections */
.about-section {
    background: var(--secondary-color);
}

/* Footer (Contact Section) */
footer {
    padding: 3rem 2rem;
    background: var(--footer-color);
    /* Light Grey */
    color: var(--text-color);
    /* Dark Text */
    text-align: center;
}

footer h3 {
    color: var(--accent-color);
    /* Dark Green */
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

footer p {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-color);
}

.email-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 2rem;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper {
    text-align: center;
}

.contact-info h4,
.contact-form-wrapper h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.socials {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.email-link a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.email-link a:hover {
    border-color: var(--accent-color);
}

/* Newsletter Form Adjustments for Grid */
#mc_embed_signup {
    margin: 1.5rem 0;
    max-width: 100%;
}

.newsletter-form .form-group {
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .socials {
        justify-content: center;
    }

    .newsletter-form .form-group {
        justify-content: center;
    }
}

.social-text {
    margin-top: 2rem !important;
    display: none;
    /* Hide old text, we have new headers */
}

/* Newsletter Form */
#mc_embed_signup {
    max-width: 500px;
    margin: 1.5rem auto;
    width: 100%;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

#mce-EMAIL {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background: #fff;
    color: var(--text-color);
}

#mce-EMAIL:focus {
    outline: none;
    border-color: var(--accent-color);
}

#mc-embedded-subscribe {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 4px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

#mc-embedded-subscribe:hover {
    background: #1a4d33;
    /* Slightly lighter/different green for hover */
}

@media (max-width: 600px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }

    #mc-embedded-subscribe {
        padding: 0.8rem;
    }
}

.social-icon img {
    width: 24px;
    height: 24px;
    /* Removed filter: invert(1) so icons stay dark */
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column !important;
        text-align: center;
    }

    .section-image {
        width: 100%;
        max-width: 100%;
    }

    .hero-logo {
        max-width: 300px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Accessibility Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}