/*
Theme Name: Erich Lamas
Theme URI: https://nextrockandco.com
Author: ChatGPT
Description: Custom one-page WordPress theme for Erich S. Lamas with full uncropped image display.
Version: 1.0
License: GPL-2.0-or-later
Text Domain: erich-lamas
*/

:root {
  --bg: #050505;
  --text: #f2f0ea;
  --muted: rgba(242, 240, 234, 0.72);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "ARP Display", "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
}

body {
  min-height: 100vh;
}

.site-wrap {
  width: 100%;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #050505;
}

.hero-inner {
  width: min(1180px, 100%);
  display: grid;
  gap: 34px;
  align-items: center;
  justify-items: center;
}

.hero-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  object-position: center;
  display: block;
}

.name {
  margin: 0;
  text-align: center;
  color: var(--text);
  font-size: clamp(64px, 13vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.07em;
  font-weight: 400;
  text-transform: uppercase;
}

.bio {
  padding: clamp(58px, 9vw, 120px) 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.bio p {
  max-width: 1180px;
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 5.2vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 400;
}

.gallery {
  width: 100%;
  padding: 24px 24px 80px;
  display: grid;
  gap: 24px;
}

.gallery-item {
  width: 100%;
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: #050505;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer {
  padding: 38px 24px 56px;
  text-align: center;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(242, 240, 234, 0.72);
  padding: 14px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.footer a:hover {
  background: var(--text);
  color: var(--bg);
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
