:root {
  --scroll-primary-color: #303f49;
  --scroll-secondary-color: #ffffff; }

.spotify-player {
  margin: 0 auto;
  padding: 16px;
  background: #373737;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-family: Arial, sans-serif; }
  .spotify-player .song-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0; }
    .spotify-player .song-list li {
      display: flex;
      align-items: center;
      padding: 12px;
      background: #181818;
      border-radius: 8px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: background 0.2s; }
      .spotify-player .song-list li:hover {
        background: #282828; }
      .spotify-player .song-list li.active {
        background: #282828;
        color: #1db954; }
      .spotify-player .song-list li p {
        flex: 1;
        margin: 0;
        font-size: 16px;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .spotify-player .song-list li audio {
        display: none; }
  .spotify-player .player-controls {
    padding: 12px;
    background: #181818;
    border-radius: 8px; }
    .spotify-player .player-controls .progress-bar {
      margin-bottom: 12px; }
      .spotify-player .player-controls .progress-bar .progress-track {
        width: 100%;
        height: 12px;
        background: #535353;
        border-radius: 4px;
        position: relative;
        cursor: pointer; }
        .spotify-player .player-controls .progress-bar .progress-track .progress-fill {
          width: 0;
          height: 100%;
          background: #1db954;
          border-radius: 4px;
          transition: width 0.1s linear; }
      .spotify-player .player-controls .progress-bar .time-display {
        display: flex;
        justify-content: space-between;
        margin-top: 4px;
        font-size: 1rem;
        color: #b3b3b3; }
    .spotify-player .player-controls .control-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px; }
      .spotify-player .player-controls .control-buttons button {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: background 0.2s; }
        .spotify-player .player-controls .control-buttons button:hover {
          background: #282828; }
        .spotify-player .player-controls .control-buttons button.play-pause::before {
          content: '\25B6'; }
        .spotify-player .player-controls .control-buttons button.play-pause.playing::before {
          content: '\275A\275A'; }
    .spotify-player .player-controls audio {
      display: none; }
  @media (max-width: 480px) {
    .spotify-player {
      padding: 8px; }
      .spotify-player .song-list li {
        padding: 8px; }
        .spotify-player .song-list li p {
          font-size: 14px; }
      .spotify-player .player-controls .progress-bar .progress-track {
        height: 16px; }
      .spotify-player .player-controls .progress-bar .time-display {
        font-size: 10px; }
      .spotify-player .player-controls .control-buttons {
        gap: 8px; }
        .spotify-player .player-controls .control-buttons button {
          font-size: 20px; } }
.auto-scroll-gallery {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  background: #192126;
  white-space: nowrap;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 18px 0; }

.gallery-strip {
  display: flex;
  gap: 0.5rem;
  animation: scroll-left 60s linear infinite; }

.film-frame {
  position: relative;
  display: flex;
  align-items: center;
  background: #111;
  padding: 2px;
  border: 2px solid #333;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  @media (max-width: 479px) {
    .film-frame {
      padding: 2px;
      border: 2px solid #333; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .film-frame {
      padding: 3px;
      border: 3px solid #333; } }
  @media (min-width: 768px) {
    .film-frame {
      padding: 4px;
      border: 4px solid #333; } }
  .film-frame img,
  .film-frame video {
    flex: 0 0 auto;
    height: 120px;
    width: auto;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(0.25) contrast(0.8);
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 1; }
    @media (min-width: 480px) and (max-width: 767px) {
      .film-frame img,
      .film-frame video {
        height: 150px; } }
    @media (min-width: 768px) {
      .film-frame img,
      .film-frame video {
        height: 200px; } }
  .film-frame .name {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 2px;
    transform: translate(-50%, -50%);
    text-align: left;
    font-family: monospace;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
    opacity: 0.7;
    background-color: #111;
    z-index: 5; }

.reel-edge {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, #111, transparent);
  z-index: 1;
  pointer-events: none; }

.reel-left {
  left: 0; }

.reel-right {
  right: 0;
  background: linear-gradient(to left, #111, transparent); }

.auto-scroll-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none; }

@keyframes scroll-left {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(-50%); } }

.site-nav {
  background-color: #f4f4f4;
  font-size: 1rem;
  margin: 0;
  padding: 0; }
  .site-nav ul {
    margin: 0;
    padding: 0;
    padding: 1rem 0;
    display: flex;
    gap: 2rem; }
  .site-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none; }
  .site-nav a {
    color: #131415;
    text-decoration: none;
    transition: background 0.2s ease; }
    .site-nav a:hover {
      background: white; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f4f4f4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
    @media (min-width: 768px) {
      .site-nav ul {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
        background: none;
        box-shadow: none;
        padding: 1rem 2rem; } }
    @media (min-width: 1024px) {
      .site-nav ul {
        gap: 2rem;
        padding: 1.5rem 2rem; } }
  .site-nav li {
    width: 100%; }
    @media (min-width: 768px) {
      .site-nav li {
        width: auto; } }
    .site-nav li a {
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background 0.2s; }
      .site-nav li a:hover {
        background: white; }

.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  color: white;
  margin-bottom: 3rem;
  height: calc(100vh - var(--nav-height, 200px)); }
  .hero-banner .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.783), rgba(0, 0, 0, 0.3), transparent);
    z-index: 1; }
  .hero-banner .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; }
  .hero-banner .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.246), transparent);
    z-index: 1; }
  .hero-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1200px;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; }
    .hero-banner .content > * {
      opacity: 1; }
    .hero-banner .content p {
      font-style: italic;
      margin: 0;
      padding: 0; }
    .hero-banner .content .roles {
      font-feature-settings: "zero", "ss01", "tnum";
      font-size: 1rem;
      text-align: center;
      font-weight: 200; }
      @media (min-width: 768px) {
        .hero-banner .content .roles {
          font-size: 2.5rem; } }
      @media (min-width: 1024px) {
        .hero-banner .content .roles {
          font-size: 3.5rem; } }
      @media (min-width: 1440px) {
        .hero-banner .content .roles {
          font-size: 4rem; } }
    .hero-banner .content .title {
      font-family: "Inter", sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      margin: 0;
      padding: 0;
      font-size: 2.5rem; }
      @media (min-width: 768px) {
        .hero-banner .content .title {
          font-size: 4rem; } }
      @media (min-width: 1024px) {
        .hero-banner .content .title {
          font-size: 5.5rem; } }
      @media (min-width: 1440px) {
        .hero-banner .content .title {
          font-size: 7rem; } }
    @media (min-width: 1440px) {
      .hero-banner .content {
        display: flex;
        flex-direction: column; }
        .hero-banner .content .hero-title {
          font-size: 30rem;
          text-wrap-mode: nowrap; }
        .hero-banner .content p {
          font-size: 1.5rem;
          text-wrap-mode: nowrap; } }
  @media (min-width: 1024px) {
    .hero-banner {
      height: calc(100vh - var(--nav-height, 200px)); } }
  @media (max-width: 767px) {
    .hero-banner {
      height: calc(100vh - var(--nav-height, 400px)); } }
  .hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background: white;
    filter: url(#noiseFilter);
    mix-blend-mode: overlay;
    opacity: 0.6;
    /* Adjust this to control grain intensity */
    pointer-events: none;
    /* Allows clicking through to the video/links */ }

.contact-section h1 {
  margin: 0;
  font-size: 1.8rem; }
  @media (min-width: 768px) {
    .contact-section h1 {
      font-size: 2.5rem; } }
  @media (min-width: 1024px) {
    .contact-section h1 {
      font-size: 3rem; } }
.contact-section form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin: auto;
  max-width: 600px; }
  @media (min-width: 768px) {
    .contact-section form {
      gap: 1.25rem; } }
  .contact-section form input,
  .contact-section form textarea {
    color: #131415;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem; }
    @media (min-width: 768px) {
      .contact-section form input,
      .contact-section form textarea {
        padding: 1rem;
        font-size: 1rem; } }
  .contact-section form button {
    background-color: #f4f4f4;
    color: #131415;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    max-width: 200px;
    margin-top: 0.5rem;
    align-self: flex-start; }
    @media (min-width: 768px) {
      .contact-section form button {
        padding: 0.9rem 2rem; } }
.auto-scroll-gallery {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  background: #192126;
  white-space: nowrap;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 18px 0; }

.gallery-strip {
  display: flex;
  gap: 0.5rem;
  animation: scroll-left 60s linear infinite; }

.film-frame {
  position: relative;
  display: flex;
  align-items: center;
  background: #111;
  padding: 2px;
  border: 2px solid #333;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  @media (max-width: 479px) {
    .film-frame {
      padding: 2px;
      border: 2px solid #333; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .film-frame {
      padding: 3px;
      border: 3px solid #333; } }
  @media (min-width: 768px) {
    .film-frame {
      padding: 4px;
      border: 4px solid #333; } }
  .film-frame img,
  .film-frame video {
    flex: 0 0 auto;
    height: 120px;
    width: auto;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(0.25) contrast(0.8);
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 1; }
    @media (min-width: 480px) and (max-width: 767px) {
      .film-frame img,
      .film-frame video {
        height: 150px; } }
    @media (min-width: 768px) {
      .film-frame img,
      .film-frame video {
        height: 200px; } }
  .film-frame .name {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 2px;
    transform: translate(-50%, -50%);
    text-align: left;
    font-family: monospace;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
    opacity: 0.7;
    background-color: #111;
    z-index: 5; }

.reel-edge {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, #111, transparent);
  z-index: 1;
  pointer-events: none; }

.reel-left {
  left: 0; }

.reel-right {
  right: 0;
  background: linear-gradient(to left, #111, transparent); }

.auto-scroll-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none; }

@keyframes scroll-left {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(-50%); } }

.project-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 479px) {
    .project-list {
      grid-template-columns: 1fr; } }
  @media (min-width: 480px) and (max-width: 767px) {
    .project-list {
      grid-template-columns: repeat(2, 1fr); } }
  .project-list a {
    display: block; }
  .project-list .project-card {
    display: grid;
    background-color: rgba(0, 0, 0, 0.191);
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
    list-style: none;
    border-radius: 20px;
    transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .project-list .project-card article {
      padding: 0 20px; }
    .project-list .project-card img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      grid-area: 1 / 1 / 2 / 3;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      align-self: end; }
    .project-list .project-card .project-title {
      margin: 0;
      padding: 0;
      font-weight: 200;
      font-size: 1.2rem; }
      @media (min-width: 768px) {
        .project-list .project-card .project-title {
          font-size: 1.4rem; } }
      @media (min-width: 1024px) {
        .project-list .project-card .project-title {
          font-size: 1.6rem; } }
    .project-list .project-card .description {
      font-size: 0.95rem; }
      @media (min-width: 768px) {
        .project-list .project-card .description {
          font-size: 1rem; } }
    .project-list .project-card .city {
      font-size: 0.9rem;
      font-style: italic;
      transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
      @media (min-width: 768px) {
        .project-list .project-card .city {
          font-size: 0.95rem; } }
    .project-list .project-card .description {
      grid-row: 2 / 3; }
    .project-list .project-card:hover {
      background-color: #34495e;
      /* Darker background on hover */
      color: #ffffff;
      /* Brighter text color on hover */
      transform: translateY(-5px);
      /* Lift the card slightly */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      /* More pronounced shadow */ }

.home-projects h1 {
  margin: 0;
  padding: 0; }

.home-projects .projects {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem; }
  @media (min-width: 768px) {
    .home-projects .projects {
      grid-template-columns: 1fr 1fr; } }
  .home-projects .projects .project-card {
    position: relative;
    z-index: 0;
    color: #ffffff; }
    .home-projects .projects .project-card .content {
      text-align: center;
      transition: text-shadow 0.3 ease;
      text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.8); }
      .home-projects .projects .project-card .content .main-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -58%);
        padding: 0;
        margin: 0; }
        .home-projects .projects .project-card .content .main-text .title {
          text-transform: uppercase;
          font-size: 2rem; }
          @media (max-width: 479px) {
            .home-projects .projects .project-card .content .main-text .title {
              font-size: 1rem; } }
        .home-projects .projects .project-card .content .main-text .role {
          font-size: 1.5rem;
          margin: 0;
          padding: 0; }
          @media (max-width: 479px) {
            .home-projects .projects .project-card .content .main-text .role {
              font-size: 0.8rem; } }
      .home-projects .projects .project-card .content .description {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        font-size: 1rem; }
        @media (max-width: 767px) {
          .home-projects .projects .project-card .content .description {
            font-size: 0.7rem; } }
    .home-projects .projects .project-card .video-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      z-index: -1; }
      .home-projects .projects .project-card .video-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        inset: 0;
        background: white;
        filter: url(#noiseFilter);
        mix-blend-mode: overlay;
        opacity: 0.4;
        /* Adjust this to control grain intensity */
        pointer-events: none;
        /* Allows clicking through to the video/links */ }
      @media (min-width: 768px) {
        .home-projects .projects .project-card .video-container {
          aspect-ratio: 27 / 40; } }
    .home-projects .projects .project-card .thumbnail {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0; }
    .home-projects .projects .project-card .image-hover {
      transition: filter 0.3s ease;
      position: relative;
      display: inline-block;
      overflow: hidden;
      filter: grayscale(50%) brightness(0.6); }
      .home-projects .projects .project-card .image-hover:hover {
        filter: grayscale(0%) brightness(1.2) contrast(1); }

.intro-section {
  position: relative; }
  .intro-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .intro-section .content li {
      font-size: 0.95rem;
      list-style-type: disc;
      line-height: 1.6;
      margin-bottom: 0.5rem; }
      @media (min-width: 768px) {
        .intro-section .content li {
          font-size: 1.05rem;
          margin-bottom: 0.75rem; } }
      @media (min-width: 1024px) {
        .intro-section .content li {
          font-size: 1.1rem;
          margin-bottom: 1rem; } }
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

* {
  color: #ffffff; }

body {
  background-color: #131415;
  color: black;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 0;
  margin: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif; }

h1 {
  font-size: 2.5rem;
  text-transform: lowercase;
  font-weight: 900;
  margin: 0;
  padding: 0;
  margin: 0.5rem auto; }
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem; } }
  @media (min-width: 1024px) {
    h1 {
      font-size: 5rem; } }
p {
  font-size: 1.2rem; }
  @media (min-width: 768px) {
    p {
      font-size: 1.1rem; } }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; }
  @media (min-width: 768px) {
    .container {
      padding: 0 2rem; } }
  .container section {
    padding: 3rem 0rem; }

body > section {
  margin: 0 auto;
  padding: 3rem 0rem; }

a {
  color: #ffffff;
  text-decoration: underline; }

ul {
  margin: 0;
  padding: 0; }
  @media (min-width: 768px) {
    ul {
      padding: 0 2rem; } }
  ul li {
    list-style: none;
    margin: 0;
    padding: 0; }

.fade-in-page {
  opacity: 0;
  transition: opacity 1.2s ease-in-out; }
  .fade-in-page.loaded {
    opacity: 1; }
    .fade-in-page.loaded > :not(.scroll-fade-in) {
      opacity: 1; }

.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 1.3s ease var(--initial-delay, 0s), transform 1.3s ease var(--initial-delay, 0s); }

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  transition: opacity 1.3s ease 0s, transform 1.3s ease 0s; }

.scroll-fade-in.faded-out {
  opacity: 0.3;
  transform: translateY(50px);
  transition-delay: 0s;
  transition: opacity 1.3s ease 0s, transform 1.3s ease 0s; }

.content-image {
  width: 100%;
  height: auto;
  margin: 1rem auto; }

.embedded-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1rem auto; }

figure {
  margin: 1.5rem 0;
  text-align: center; }

figcaption {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-top: 0.4rem; }

.image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr; }

.image-grid.two-col {
  grid-template-columns: 1fr; }
  @media (min-width: 768px) {
    .image-grid.two-col {
      grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 480px) and (max-width: 767px) {
  .image-grid.three-col {
    grid-template-columns: repeat(2, 1fr); }
    .image-grid.three-col > :nth-child(3n) {
      grid-column: span 2; } }

@media (max-width: 479px) {
  .image-grid.three-col {
    grid-template-columns: 1fr; } }

@media (min-width: 768px) {
  .image-grid.three-col {
    grid-template-columns: repeat(3, 1fr); } }
