/* ---------- RESET / GLOBAL ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 80px;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #030303; /*BEHIND PIC DON'T GODDAMN CHANGE*/
  color: #F4F1EE;
}

a {
  color: #F4F1EE;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #6B1E23; /*maroon*/
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 22px;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  margin-left: 25px;
  font-size: 15px;
}

/* ---------- SOCIAL ICONS ---------- */
.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #F4F1EE; /*soft white*/
  opacity: 0.85;
}
/* =========================
   BRAND ICON COLORS
   ========================= */

/* Instagram gradient */
.icon-instagram svg {
  fill: url(#instagram-gradient);
}

/* Facebook blue */
.icon-facebook svg {
  fill: #1877F2;
}

/* Patreon coral */
.icon-patreon svg {
  fill: #FF424D;
}

/* keep icons like this dont change */
.social svg {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.social a:hover svg {
  opacity: 1;
}

.social svg:hover {
  opacity: 1;
}

/* ---------- FIXED IMAGE ---------- */
.hero-image {
  position: fixed;
  top: 80px;
  left: 0;
  width: 45%;
  height: auto;
  background-color: #030303;
  z-index: 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 200vh;
  background-color: transparent; /*text holder*/
  z-index: 1;
}

/* ---------- HERO CONTENT ---------- */
.hero-content {
  width: 100%;
  padding: 0 80px;
  margin-top: 40vh;
  background-color: transparent; /*shit behind main text*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 24px;
  line-height: 1.65;
}

/* ---------- REVIEWS / UPCOMING ---------- */
.hero-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  font-size: 15px;
}

.hero-info strong {
  font-size: 20px;
}

/* ---------- BOTTOM UTILITY BAR ---------- */
.utility-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;

  background-color: #2b2b2b;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;

  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.utility-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* ---------- BOTTOM SOCIAL ---------- */
.bottom-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bottom-social a {
  display: inline-flex;
  align-items: center;
}

.bottom-social svg {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.95;
}

.bottom-social a:first-child {
  white-space: nowrap;
  margin-right: 12px;
}



