/*
Theme Name: MORI Games
Theme URI: https://morigames.lovable.app
Author: MORI Games AB
Description: A minimal, high-contrast black and white one-page theme for MORI Games studio.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mori-games
*/

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

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #888;
  --border: #333;
  --font-display: 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utility */
.mori-display {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Nav */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 1rem;
}
.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.site-nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem 2rem;
}
.hero img {
  width: 16rem;
  height: auto;
}
@media (min-width: 768px) { .hero img { width: 18rem; } }

/* Section heading */
.section-heading {
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

/* Projects */
.projects { padding: 5rem 1rem; }
.projects .card {
  max-width: 20rem;
  margin: 0 auto;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  border-radius: 2px;
}
.projects .card:hover {
  border-color: var(--muted);
  transform: translateY(-4px);
}
.projects .card .thumb { aspect-ratio: 4/5; overflow: hidden; }
.projects .card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.projects .card .label { padding: 1rem; }
.projects .card .label p { font-size: 0.875rem; }

/* Contact */
.contact-section {
  padding: 6rem 1rem;
  text-align: center;
}
.cta-button {
  display: inline-block;
  border: 1px solid var(--fg);
  color: var(--fg);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.cta-button:hover {
  background: var(--fg);
  color: var(--bg);
}

/* Footer */
.site-footer {
  padding: 3rem 1rem;
  text-align: center;
}
.site-footer .brand { font-size: 1.125rem; margin-bottom: 0.5rem; }
.site-footer .copy {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}
