/*
Theme Name: Erich Lamas Landing
Author: ChatGPT
Version: 1.0
Description: One-page WordPress landing theme with ARP Display styling and Wix-hosted images.
*/

@font-face {
  font-family: 'ARP Display';
  src: local('ARP Display'), local('ARPDisplay');
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: rgba(255,255,255,.92);
  font-family: 'ARP Display', 'Orbitron', 'Eurostile', 'Arial', sans-serif;
}

.site-wrap {
  min-height: 100vh;
  background: #000;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 310px;
  width: 100%;
  overflow: hidden;
  background: #050505;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: contrast(1.1) saturate(.7);
  display: block;
}

.hero-title {
  position: absolute;
  left: 21%;
  top: 34%;
  transform: translateY(-50%);
  font-size: clamp(36px, 7vw, 100px);
  line-height: .98;
  letter-spacing: .045em;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  text-shadow: 0 0 12px rgba(255,255,255,.18);
}

.content {
  width: min(980px, 82vw);
  margin: 34px auto 0;
}

.bio {
  font-size: clamp(26px, 3.1vw, 45px);
  line-height: 1.45;
  letter-spacing: .025em;
  text-transform: uppercase;
  font-weight: 400;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(70px, 14vw, 190px);
  margin: 150px auto 80px;
}

.gallery img {
  width: 190px;
  height: 245px;
  object-fit: cover;
  display: block;
}

.cta {
  display: inline-block;
  margin: 0 auto 90px;
  padding: 14px 30px;
  border: 1.5px solid rgba(255,255,255,.85);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
}

.cta-wrap { text-align: center; }

@media (max-width: 760px) {
  .hero { height: 250px; }
  .hero-title { left: 8%; font-size: 52px; }
  .content { width: 88vw; }
  .bio { font-size: 25px; }
  .gallery { gap: 28px; margin-top: 90px; }
  .gallery img { width: 135px; height: 175px; }
}
