body
{
    background-color: black;
    color: white; 
    justify-content: center;
    overflow-x: hidden;
}


p {
  font-family: monospace;
  font-size: 16px;
  text-align: center;
}

* {
  cursor: none;
}

.cursor-star {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  color: white;
  font-size: 20px; /* was 14px */
  line-height: 1;
  transform: translate(-50%, -50%);
  text-shadow:
    0 0 6px #fff,
    0 0 12px rgba(255,255,255,.8);

  animation: starTrail 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes starTrail {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

/* logo */

.logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  opacity: 0.2; /* 20% opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -10;
}

.logo img {
  width: auto;
  height: auto;
  max-width: 130%;
  max-height: 130%;
  opacity: 1; /* Make sure the image itself is fully opaque */
}



/* sara, NYC, email */
.nav {
  font-family: monospace;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 15px;
  z-index: 3;
}

.nav a {
  content: '\2022';
  color: white;
  text-decoration: none;
  padding: 5px;
  margin: 0 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.top-links:hover a {
filter:
  drop-shadow(0 0 20px #fff)
  drop-shadow(0 0 40px #fff)
}


#location-link,
.bullet {
  display: inline;
}


.name-wrapper {
  position: relative;
  display: inline-block;
}

/* floating bio (does NOT affect layout) */
.name-bio {
  position: absolute;
  top: 100%;        /* directly below the name */
  left: 10%;
  width: 500px;
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-top: 15px;
  text-align: left; /* key fix */

}

/* text styling */
.name-bio p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
    text-align: left; /* key fix */

}

/* fade in only */
.name-wrapper:hover .name-bio {
  opacity: 1;
}



/* HAMBURGER MENU */

#menu-toggle {
  display: none;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  transition: .3s;
}

.dropdown-menu {
  position: fixed;
  top: 60px;
  right: 20px;
  background: black;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9998;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  font-family: monospace;
  font-size: 16px;
}

.dropdown-menu a:hover {
  filter: drop-shadow(0 0 8px white);
}

.wildcard-logo img {
  height: 24px;   /* adjust as needed */
  width: auto;
  display: block;
  transition: filter 0.3s;
}

.wildcard-logo:hover img {
  filter: drop-shadow(0 0 8px white);
}

#menu-toggle:checked ~ .dropdown-menu {
  opacity: 1;
  visibility: visible;
}


/* copyright */

.copyright {
  font-family: monospace;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 15px;
}

.copyright a {
  color: white;
  text-decoration: none;
  padding: 5px;
  margin-right: 10px;
  font-size: 16px;
}

.roles-section {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
}

.heading {
  margin-top: -13%;
  margin-bottom: -20%;
  white-space: nowrap;
  width: max-content;
}

.heading h1 {
  font-family: monospace;
  font-size: clamp(28px, 7vw, 80px);
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
}

.name-link {
  font-family: monospace;
  font-style: italic;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.erotica-letter {
  font-family: "erotica-big", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5em; /* instead of 200px */
}

.name-link:hover {
  filter: drop-shadow(0 0 8px white);
}


.marquee {
  overflow: hidden;
  white-space: nowrap;

}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
 
}

.marquee-content span {
  font-family:  monospace;
  font-size: 2.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-content span:nth-child(even) {
  font-size: 1.3rem;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

.intro-points {
  margin-top: -2%;
  margin-bottom: -5%;
  text-align: left;
}

.intro-points p {
  font-family: monospace;
  font-size: 18px;
  color: white;
  text-align: left;
  text-transform: uppercase;
}

.intro-points a {
  color: white;
  text-decoration: underline;
  transition: filter .3s ease;
}

.intro-points a:hover {
  filter: drop-shadow(0 0 8px white);
}

/* works */

.title{
  font-family: monospace;
  text-align: center;
  margin-top: 5%;
  font-size: 2vw;
}

.works {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2%;
  margin-top: 10%;
}



h1 {
  font-family: monospace;
  font-size: 80px;
  font-weight: 400;
  text-align: left;
  font-style: italic;
}

h2 {
  font-family: monospace;
  font-size: 40px;
  text-align: center;
  font-weight: 100;
  text-transform: uppercase;

}

.all-works-link {
  width: 100%;
  text-align: center;
  margin-top: -2%;

  font-family: monospace;
  color: white;
}

.all-works-link span {
  font-size: 18px;
  margin-right: 10px;
}

.all-works-link a {
  display: inline-block;
  font-size: 36px; /* adjust as desired */
  line-height: 1;
  color: white;
  text-decoration: none;
  transition: filter 0.3s, transform 0.3s;
}

.all-works-link a:hover {
  filter: drop-shadow(0 0 8px white);
  transform: translateX(6px);
}

html {
  scroll-behavior: smooth;
}

.scroll-arrow {
  position: fixed;
  bottom: 45px;
  left: 50%;
  z-index: 99999;

  color: white;
  text-decoration: none;
  font-family: monospace;
  font-size: 40px;

  animation: bounceArrow 1.2s infinite;
  transition: filter 0.3s ease;
}

.scroll-arrow:hover {
  filter: drop-shadow(0 0 10px white);
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}


/* general art */

.RGB{
  width: 50%;         
  margin-left: 65%;
  margin-top: -50%;
}

.RGB img{
  width: 100%;
}


.wildcard {
  max-width: 100%;
}

.wildcard img {
  padding: 5%;
  margin-top: -5%;
  margin-left: -75%;
  width: 80%;
}


.zineify {
  max-width: 100%;
}

.zineify img {
  margin-top: -50%;
  margin-left: -10%;
  width: 40%;
}

.geoffrey-mac {
  max-width: 100%;
}

.geoffrey-mac img {
  width: 80%;
  margin-left: 65%;
  margin-top: 10%;
}

.bornrich-diecool {
  max-width: 100%;
}

.bornrich-diecool img {
  width: 80%;
  margin-left: -115%;
  margin-top: -120%;
  transform: rotate(25deg);

}

.pttr {
  max-width: 100%;
}

.pttr img {
  width: 80%;
  margin-top: -70%;
  margin-left: -120%;
}

.fmn {
  max-width: 100%;
}

.fmn img {
  width: 70%;
  margin-left: 5%;
  margin-top: -25%;
}


.homebody {
  max-width: 100%;
  transform: rotate(10deg);
}

.homebody img {
  width: 75%;
  margin-top: -30%;
  margin-left: 75%;
  padding: 2%;
}


.pttr img,
.homebody img,
.wildcard img,
.fmn img,
.zineify img,
.RGB video, 
.RGB img,
.bornrich-diecool img,
.geoffrey-mac img{
  transition: filter 0.3s ease-in-out;
}



.pttr img:hover,
.homebody img:hover,
.riot-grrrl img:hover,
.wildcard img:hover,
.fmn img:hover,
.zineify img:hover,
.RGB video:hover, 
.RGB img:hover,
.bornrich-diecool img:hover,
.geoffrey-mac img:hover{
  filter: drop-shadow(0 0 10px white);
}



.image-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 40px 0;
}

.image-marquee h2 a {
  color: white;
  text-decoration: underline;
  transition: filter 0.3s ease;
}


.image-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: imageScroll 25s linear infinite;
}

.image-track img {
  width: 350px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform .3s ease;
}



@keyframes imageScroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}



/* phone media queries */


@media only screen and (max-width: 567px) {
  .works {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout */
    gap: 10px; /* Adds spacing between items */
    width: 100%;
    margin: 0 auto; /* Center align the grid */
  }

  .works img {
    width: 100%; /* Ensure images take full width of the column */
    margin: 0 auto; /* Center align images */
    margin-top: 10%;
  }

  .RGB {
    max-width: 100%; /* Ensure images take full width of the column */
    margin: 0 auto; /* Center align images */
  }

    .RGB video{
    width: 100%; /* Ensure images take full width of the column */
    margin-top: 20%;
  }

  h2{
    font-size: 30px;
  }

  .marquee-content span {
  font-size: 1.7rem;
}

  .nav a, 
  .bottom-nav a, 
  .copyright a {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  #location-link,
  #first-bullet{
    display: none;
  }

}



