/* ===========================================
   PLACEHOLDER PAGE STYLES
   globalgamejam.lt - Domain Reserved
   =========================================== */

:root {
    --color-bg: #030303;
    --color-text: #FAF5F5;
    --color-accent: #C29336;
    --color-faded: rgba(123, 123, 123, 0.45);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

/* === Layout === */
.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
a {
    color: var(--color-text);
    text-decoration: none;
}

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

h1 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 500;
}

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

/* === Hero Section === */
.hero {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px; /* Space for copyright */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
    z-index: 0;
}

.hero-content {
    text-align: center;
    padding: 72px 0 48px;
}

.hero-subtext {
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text);
}

/* === Contact Form === */
.contact-form {
    max-width: 400px;
    margin: 32px auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-accent);
}

.form-label .required {
    color: var(--color-text);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background-color: rgba(250, 245, 245, 0.05);
    border: 1px solid rgba(250, 245, 245, 0.2);
    border-radius: 6px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(250, 245, 245, 0.08);
}

.form-input::placeholder {
    color: var(--color-faded);
}

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

.form-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bg);
    background-color: var(--color-accent);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-button:hover {
    background-color: #a87d2e;
}

.form-button:active {
    transform: scale(0.98);
}

.form-success,
.form-error {
    max-width: 400px;
    margin: 32px auto 0;
    padding: 20px 24px;
    border-radius: 6px;
    text-align: center;
}

.form-success {
    background-color: rgba(194, 147, 54, 0.15);
    border: 1px solid var(--color-accent);
}

.form-success p {
    color: var(--color-accent);
    font-weight: 500;
}

.form-error {
    background-color: rgba(163, 48, 24, 0.15);
    border: 1px solid #a33018;
    margin-bottom: 20px;
}

.form-error p {
    color: #e05a3a;
}

/* === Hero Copyright === */
.hero-copyright {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-faded);
}

.hero-copyright a {
    color: inherit;
    text-decoration: underline;
}

.hero-copyright a:hover {
    color: var(--color-accent);
}

/* === Mobile === */
@media (max-width: 768px) {
    .hero-content {
        padding: 72px 32px 32px;
    }
}

