/* ---------- BASE ---------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ---------- BACKGROUND VIDEO + GRAIN ---------- */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0; /* video visible */
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

header h1 a, .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-links a {
  margin-left: 1.5rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 2rem 3rem;
  text-align: center;
}

/* first section spacing fix */
.section:first-of-type {
  padding-top: 3.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
}

/* breathing room before ALL carousels */
.section .description {
  margin-bottom: 2.5rem;
}

.section .carousel-container {
  margin-top: 0.5rem;
}

/* ---------- CONTACT FORM SECTION ---------- */
.hire-me {
  text-align: center;
  padding: 2.5rem 1.5rem 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hire-me-card {
  background: none !important;    /* remove black box */
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.hire-me-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.hire-me-card p {
  margin-top: 0;
  margin-bottom: 1.4rem;
  font-size: 1rem;
  color: #ddd;
}

/* ---------- FORM ---------- */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

/* SAME TRANSPARENCY FOR ALL FIELDS */
input,
textarea,
button {
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.55) !important;
  color: black !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

button {
  font-weight: bold;
  cursor: pointer;
}

/* ---------- CAROUSELS (FULL EDGE-TO-EDGE) ---------- */
.carousel-container {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  width: 100vw;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  height: 50vh;
}

.carousel-item img,
.carousel-item video {
  height: 100%;
  width: auto;
  max-width: 100%;
  border-radius: 0;
  display: block;
  object-fit: contain;
}

/* ---------- SCROLL HINT ---------- */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 150;
  width: 100%;
  text-align: center;
}

.scrolled .scroll-hint {
  opacity: 0;
  pointer-events: none;
}

.nav-links { white-space: nowrap; }
.nav-links a { flex-shrink: 0; }

/* ---------- SCROLL SNAP ---------- */
html, body {
  scroll-snap-type: y mandatory;
  scroll-padding-top: -3vh;
}

body {
  scroll-snap-stop: always;
}

.section, .hire-me {
  scroll-snap-align: center;
  min-height: 100vh;
}

/* ---------- FADE-IN ANIMATION ---------- */
section, .hire-me {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}

section.visible, .hire-me.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FOOTER SOCIAL ---------- */
.global-social {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  text-align: center;
  margin: 2rem 0 3rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.global-social a {
  color: white;
  text-decoration: none;
  font-weight: 900;
  margin: 0 1.2rem;
}

.global-social.visible {
  opacity: 1;
  transform: translateY(0);
}

/* desktop footer spacing */
@media (min-width: 900px) {
  .global-social a {
    margin: 0 2.5rem;
    font-size: 0.95rem;
  }
}

/* small phone fixes */
@media (max-width: 400px) {
  header {
    padding: 0.5rem 0.6rem;
  }
  header h1 a {
    font-size: 0.95rem;
  }
  .nav-links {
    gap: 0.6rem;
  }
 .nav-links a {
    font-size: 0.95rem;
  }
}

/* Inline links in section (YouTube + Buy Zine) */
.section a {
  color: white !important;
  text-decoration: none !important;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  letter-spacing: 0.05em;
}

/* Final ABOUT section spacing + FIX min-height issue */
.index-about {
  padding-top: 2rem !important;      /* tighten space ABOVE */
  padding-bottom: 0rem !important;   /* tighten space BELOW */
  min-height: auto !important;       /* remove forced 100vh */
}
