/**
 * Gopex LLC — Unwaking
 * Survivor horror shooter aesthetic
 */

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

:root {
    --bg-dark: #0a0a0b;
    --bg-card: rgba(18, 18, 20, 0.9);
    --text-primary: #f0f0f0;
    --text-muted: rgba(240, 240, 240, 0.7);
    --accent: #c41e3a;
    --accent-dim: rgba(196, 30, 58, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero background — dark gradient with subtle vignette */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0, 0, 0, 0.9) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0b 0%, #0f0f12 50%, #0a0a0b 100%);
    z-index: -1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-llc {
    color: var(--accent);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-tagline-location {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(196, 30, 58, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-cta-text strong {
    color: var(--accent);
}

/* Section base */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* Game Section */
.game-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}

.game-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
}

.game-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: lowercase;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* GDC Section */
.gdc-section {
    border-top: 1px solid var(--border);
}

.gdc-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(196, 30, 58, 0.06);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--accent-dim);
    text-align: center;
}

.gdc-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--accent-dim);
    border-radius: 4px;
}

.gdc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gdc-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #a01830;
    transform: translateY(-1px);
}

/* About Section */
.about-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.about-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid var(--border);
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-dim);
}

.newsletter-button {
    padding: 1rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-button:hover {
    background: #a01830;
}

.newsletter-message {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.newsletter-message-success {
    color: #4ade80;
}

/* Final CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Contact Page */
.hero-compact {
    min-height: 50vh;
    padding: 6rem 2rem 3rem;
}

.contact-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.contact-form-container {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-dim);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.cta-button-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.message-alert {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.message-alert-success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
}

.message-alert-error {
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid var(--accent-dim);
    color: #f87171;
}

.contact-info-section {
    border-top: 1px solid var(--border);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-card a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 11, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-links.nav-links-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .newsletter-form-group {
        flex-direction: column;
    }
}
