/* ---------- GLOBAL RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

/* ---------- LAYOUT ---------- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER & NAV ---------- */
.site-header {
  background: #000;
  border-bottom: 1px solid #222;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 110px;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #ccc;
}

/* NAV */
.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a.active {
  background: #e63b2f;
  color: #fff;
}

/* ---------- HERO / BANNERS ---------- */

.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero--small {
  min-height: 260px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.9));
  z-index: -1;
}

.hero-inner {
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h2 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- MAIN CONTENT ---------- */

main {
  flex: 1;
}

.section {
  padding: 2.5rem 0;
}

.section + .section {
  border-top: 1px solid #191919;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.section p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.section ul {
  margin-left: 1.2rem;
  margin-top: 0.5rem;
}

.section li {
  margin-bottom: 0.3rem;
}

/* FLEX ROWS */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: #111;
  border-radius: 8px;
  border: 1px solid #222;
  padding: 1.4rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
}

/* ---------- BUTTONS / LINKS ---------- */
.btn-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #e63b2f;
  color: #fff;
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.btn--light {
  border-color: #fff;
}

.btn:hover {
  background: #e63b2f;
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- FORMS ---------- */
form {
  max-width: 480px;
}

label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  color: #aaa;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 4px;
  border: 1px solid #333;
  background: #080808;
  color: #eee;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid #222;
  background: #000;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #888;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ---------- HERO BACKGROUNDS ---------- */
.hero--home::before {
  background-image: url("images/banner-zone-vr.png");
}

.hero--book::before {
  background-image: url("images/banner-book-about.png");
}

.hero--scuba::before {
  background-image: url("images/banner-scuba.png");
}

.hero--zone::before {
  background-image: url("images/banner-zone-vr.png");
}

.hero--zombie::before {
  background-image: url("images/banner-zombie-killer.png");
}

.hero--rock::before {
  background-image: url("images/banner-legends-rock.png");
}

.hero--collectibles::before {
  background-image: url("images/banner-collectibles.png");
}