@charset "UTF-8";

/* -------------------- FONTS -------------------- */
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}

/* -------------------- GLOBAL -------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
img {
  display: block;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------- LANDING -------------------- */
.home-hero {
  position: relative;
  height: 100vh;
  display: grid;
    grid-template-columns:
    clamp(24px, 5vw, 80px)
    clamp(300px, 40vw, 640px)
    clamp(24px, 5vw, 80px)
    clamp(320px, 45vw, 720px)
    clamp(24px, 5vw, 80px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-video {
  grid-column: 2;
  position: relative;
    width: 100%;       /* fill the grid column */
  aspect-ratio: 1 / 1; /* keep square ratio */
  margin: 0 auto;
  overflow: hidden;
  z-index: 4;
  clip-path: circle(0% at 50% 50%);
}
.overlay-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border: 0;
  pointer-events: none;
	  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.overlay-video:hover iframe {
  filter: grayscale(0%);
}
.hero-text {
  grid-column: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-hi-png{
	  position: absolute; /* floats above normal flow */
  top: -40%;         /* adjust vertical offset */
  left: 28%;          /* center horizontally */
  transform: translateX(-50%); /* truly center the image */
  width: 3vw;        /* or whatever looks right */
  pointer-events: none; /* optional: lets clicks pass through */
  z-index: 10;        /* ensure it’s above text */
	
}
.hero-line-png {
  width: 100%;       /* fills container width */
  height: auto;
  display: block;
  margin-bottom: 5px;
}

.hero-paragraph {
  width: 100%;        /* same as container */
  padding: 0 10px;    /* optional internal padding */
  margin-top: -20px;
}

.hero-paragraph p {
  font-family: 'FranklinGothic', Arial, sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #222;

  display: flex;
  align-items: flex-start;
  gap: 0.5em; /* space between marker and text */
}

.hero-paragraph p::before {
  content: ">";
  flex-shrink: 0;   /* keep marker from shrinking */
  font-weight: bold; /* optional */
  color: #222;       /* marker color */
}
/* -------------------- PROJECTS -------------------- */
.projects-section {
  background-color: #222222;
  padding: 80px 40px;
  opacity: 1;
  transform: none; /* no offset */
  transition: none; /* remove scroll animation easing */
	
}

.projects-heading {
  position: relative;   /* necessary for absolute children */
  text-align: center;   /* horizontal centering reference */
  overflow: hidden;     /* crop top if needed */
	  align-items: center;
  justify-content: center;
}

.projects-heading p {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: clamp(3rem, 4vw, 6rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #f8f2e6;
  position: relative;      /* change from absolute -> relative */
  display: inline-block;   /* shrink-to-fit for centering */
  margin: 0;
  top: -6%;                /* relative shift for cropping */
  white-space: nowrap;     /* keep on one line */
  max-width: 100%;         /* prevent overflow past container */
  box-sizing: border-box;  /* include padding if needed */
}
.projects-line {
  width: 25vw;
  height: auto;
  display: block;
	margin: 0 auto 5px auto;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 40px;
}
.grid-wrapper {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 20px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
}
@media (max-width: 1400px) { .image-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1000px) { .image-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .image-grid { grid-template-columns: 1fr; } }

.rollover {
  position: relative;
  display: block;
  overflow: hidden;
}
.rollover img {
  max-width: 400px;
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
.rollover .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.rollover:hover .hover {
  opacity: 1;
  transition: none;
}
.rollover:hover .base {
  opacity: 0;
  transition: none;
}

/* Josh Johnson Merch */
.joshmerch .base {
  transform: translate(2px, -1px) rotate(-0.3deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.joshmerch .base:hover {
  transform: translate(2px, -1px) rotate(3deg);
}

/* Retrieving Roadie */
.retrievingroadie .base {
  transform: translate(-2px, 1px) rotate(0.3deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.retrievingroadie .base:hover {
  transform: translate(-2px, 1px) rotate(-2deg);
}

/* Blake Edwards Titles */
.blakeedwardstitles .base {
  transform: translate(1px, -2px) rotate(0.2deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.blakeedwardstitles .base:hover {
  transform: translate(1px, -2px) rotate(2.5deg);
}

/* Glitch */
.glitch .base {
  transform: translate(-1px, 2px) rotate(-0.2deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.glitch .base:hover {
  transform: translate(-1px, 2px) rotate(-3deg);
}

/* American Genocide */
.americangenocide .base {
  transform: translate(0px, 1px) rotate(0.4deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.americangenocide .base:hover {
  transform: translate(0px, 1px) rotate(1.5deg);
}

/* Hey Toma */
.heytoma .base {
  transform: translate(1px, 0px) rotate(-0.4deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.heytoma .base:hover {
  transform: translate(1px, 0px) rotate(-1.5deg);
}

/* Erika Harlacher Merch */
.erikaharlachermerch .base {
  transform: translate(-1px, -1px) rotate(0.5deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.erikaharlachermerch .base:hover {
  transform: translate(-1px, -1px) rotate(2deg);
}

/* friendZspace */
.friendzspace .base {
  transform: translate(2px, 2px) rotate(-0.5deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.friendzspace .base:hover {
  transform: translate(2px, 2px) rotate(-2deg);
}

/* Oopsie Daisy */
.oopsiedaisy .base {
  transform: translate(1px, 1px) rotate(0.2deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.oopsiedaisy .base:hover {
  transform: translate(1px, 1px) rotate(2deg);
}

/* Skeleton Beach */
.skeletonbeach .base {
  transform: translate(-1px, 2px) rotate(-0.3deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.skeletonbeach .base:hover {
  transform: translate(-1px, 2px) rotate(1.5deg);
}

/* Grandma's Boy */
.grandmasboy .base {
  transform: translate(0px, -1px) rotate(0.3deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.grandmasboy .base:hover {
  transform: translate(0px, -1px) rotate(-1.5deg);
}

/* The Flowers Tour */
.theflowerstour .base {
  transform: translate(1px, 2px) rotate(-0.4deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.theflowerstour .base:hover {
  transform: translate(1px, 2px) rotate(2deg);
}

/* We Be Monsters */
.webemonsters .base {
  transform: translate(2px, 0px) rotate(-0.2deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.webemonsters .base:hover {
  transform: translate(2px, 0px) rotate(1.5deg);
}

/* Freshman 15 */
.freshman15 .base {
  transform: translate(1px, -2px) rotate(0.4deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.freshman15 .base:hover {
  transform: translate(1px, -2px) rotate(-1.5deg);
}

/* Christmas Unfiltered */
.christmasunfiltered .base {
  transform: translate(-1px, 1px) rotate(-0.5deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.christmasunfiltered .base:hover {
  transform: translate(-1px, 1px) rotate(2deg);
}

/* Thought I Wouldn't Like That */
.thoughtiwouldntlikethat .base {
  transform: translate(0px, 2px) rotate(0.3deg);
  transform-origin: top center;
  transition: transform 0.3s ease-in-out;
}
.thoughtiwouldntlikethat .base:hover {
  transform: translate(0px, 2px) rotate(-2deg);
}


/* -------------------- INQUIRE -------------------- */
.shadow-image {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: cover;
  margin-top: -24px;
  margin-left: 0px;
  padding: 0;
}
.inquire-section {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: 30vw, 40vw, 30vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inquire-form {
	  grid-column: 3;
  display: flex;
  flex-direction: column;
}
.inquire-section h1 {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}
.inquire-section p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form label {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: normal;
  text-align: left;
  display: block;
  margin-bottom: 5px;
  margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  outline: none;
}
.contact-form button {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  color: #222222;
  display: inline-block;
  padding: 14px 40px;
  margin-top: 15px;
  width: auto;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #222222;
  color: #ffffff;
  animation: submit-bounce 0.3s ease-in-out;
}
textarea {
  width: 100%;
  height: 200px;
  resize: none;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 1rem;
  margin: 0;
  overflow-x: hidden;
  word-wrap: break-word;
}
.button-wrapper {
  text-align: center;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes submit-bounce {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* -------------------- MOBILE -------------------- */
@media (max-width: 768px) {
	  
/* ---------- HOME / HERO (MOBILE) ---------- */
  .home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 80px 20px 48px;
  }

  /* VIDEO */
  .overlay-video {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    margin-bottom: 24px;
    clip-path: none; /* disable iris on mobile */
  }

  /* HI — placed immediately after video */
  .hero-hi-png {
    position: static;
    width: 48px;
    margin: 16px 0 4px 0; /* space above & below */
    transform: none;
  }

  /* HERO LINE */
  .hero-line-png {
    max-width: 90%;
    margin-bottom: -15px;
  }

  /* HERO TEXT BLOCK */
  .hero-text {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 12px;
  }

  /* PARAGRAPH */
  .hero-paragraph {
    padding: 0;
    margin-top: 0;
  }

  .hero-paragraph p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }
	/* ---------- PROJECTS ---------- */
	  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
	}
  .projects-section {
    padding: 60px 20px;
  }

  .projects-heading p {
     font-size: clamp(2rem, 5vw, 2.5rem); /* smaller min/max for mobile */
    white-space: nowrap; /* force a single line */
	  letter-spacing: 0.03em; 
    top: 0;
  }

  .projects-line {
    width: 60vw;
    padding-left: 0;
  }

  /* Disable hover swap on touch devices */
  @media (hover: none) {
    .rollover .hover {
      display: none;
    }
    .rollover .base {
      opacity: 1 !important;
    }
  }

  /* ---------- INQUIRE ---------- */
  .inquire-section {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .inquire-form {
    grid-column: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  textarea {
    height: 160px;
  }

  .contact-form button {
    width: 100%;
  }
}
}