* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: 'MyCustomFont';
  src: url('Assets/Fonts/BalooBhaijaanUrdu-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optional but improves performance */
}

body, html {
  overflow-x: hidden;
  width: 100vw;
  
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  
}

.global-buttons {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.global-headings {
  font-size: 2.8rem;
  font-weight: 600;
  padding-bottom: 0rem;
  font-family: 'MyCustomFont', sans-serif;
}

.global-paragraphs {
  font-size: 1.8rem;
  color: #1A1A1A;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.global-round-buttons {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

#main-content {
   position: relative;
   z-index: 2;
   transition: transform 0.3s ease-out;
   will-change: transform;
   background-image: url('Assets/NASTY.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
  }

  /* HERO SECTION */
#hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: visible;
  position: relative;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2vh 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  opacity: 0; /* start hidden */
  transform: translateY(-40px); /* slide down */
}

.logo-icon {
  width: 3.7vw;
  height: auto;
  display: block;
}

.top-cta {
  background-color: #FFD771;
  color: #1A1A1A;
  white-space: nowrap; /* ✅ keeps it on one line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-cta:hover {
  background-color: #FF595B;
  color: white;
}

/* Letter Intro */
.letter-container {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translate(-50%, -50%);
}

.letter {
  height: 8vh;
  opacity: 1;
}

#s {
  opacity: 1;
}

/* Camera Roll Intro */
.camera-roll-wrapper {
  position: absolute;
  top: 50%;
  left: 150vw;
  transform: translate(-50%, -50%);
  width: 20vw;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The visible area inside the phone screen */
.phone-content { 
  position: absolute;
  top: 3%;      
  left: 6.8%;      
  width: 86%;    
  height: 94.5%;   
  overflow: hidden;
  z-index: 1;
}

/* The strip that scrolls upward */
.photo-strip {
  position: absolute;
  top: 0%;     
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.phone-frame {
  position: relative;
  width: 97%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Photo Explosion */
.photo-explosion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: 4;
  pointer-events: none;
}

.fly-photo {
  position: absolute;
  aspect-ratio: 3 / 4;
  width: 10vw;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; /* ← add this */
}

.photo1 {
  animation: cycleSet1 12s infinite steps(1, end);
  z-index: 7;
}

@keyframes cycleSet1 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-3.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-1.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-6.webp');
  }
}

.photo2 {
  animation: cycleSet2 12s infinite steps(1, end);
  z-index: 6;
}

@keyframes cycleSet2 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-11.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-4.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-8.webp');
  }
}

.photo3 {
  animation: cycleSet3 12s infinite steps(1, end);
  z-index: 8;
}

@keyframes cycleSet3 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-17.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-7.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-2.webp');
  }
}

.photo4 {
  animation: cycleSet4 12s infinite steps(1, end);
  z-index: 7;
}

@keyframes cycleSet4 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-12.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-10.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-5.webp');
  }
}

.photo5 {
  animation: cycleSet5 12s infinite steps(1, end);
  z-index: 6;
}

@keyframes cycleSet5 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-15.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-13.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-14.webp');
  }
}


.photo6 {
  animation: cycleSet6 12s infinite steps(1, end);
  z-index: 5;
}

@keyframes cycleSet6 {
  0%, 33% {
    background-image: url('Assets/photo-explosion-9.webp');
  }
  33.01%, 66% {
    background-image: url('Assets/photo-explosion-16.webp');
  }
  66.01%, 100% {
    background-image: url('Assets/photo-explosion-18.webp');
  }
}

/* Prompt Card */
.prompt-card {
  position: absolute;
  top: 50%; /* start way above screen */
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  aspect-ratio: 3 / 4;
  width: 20vw;
  height: auto;
  z-index: 20;
  opacity: 0;
  background-color: #FFFCF7;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* center vertically */
  align-items: center;
}

.prompt-card p {
  color: #3A3A3A;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 1.8rem auto; /* push space between text and button */
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.prompt-text::before {
  content: "What not to do \A at a funeral.";
  white-space: pre-line;
  animation: promptCycle 12s infinite steps(1, end);
  font-size: 1.2rem;
  color: #1A1A1A;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  display: block;
  font-family: 'Poppins', sans-serif;
}

/* New class to stop cycling and show a single final message */
.prompt-text.clicked::before {
  animation: none;
  content: "For real, \A why don't you...";
}

@keyframes promptCycle {
  0%, 33% {
    content: "What not to do \A at a funeral.";
  }
  33.01%, 66% {
    content: "Felt cute, \A but my front camera \A felt otherwise.";
  }
  66.01%, 100% {
    content: "Where happiness \A goes to die.";
  }
}

.prompt-button {
  background-color: #FF595B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 13; /* Just to be safe */
  padding: 1.3rem 1.8rem;
}

.button-wordmark {
  height: 1em; /* Scale with button text size */
  width: auto;
  vertical-align: middle;
  pointer-events: none; /* ensures clicks reach the button */
  object-fit: contain;
}

.prompt-button.clicked {
  background-color: #FFD771;
  color: #1A1A1A;
}

/* Bottom UI */
.hero-bottom-ui {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
  opacity: 0;
  transform: translateY(40px); /* Add this */
}

.scroll-down {
  transform: translateX(-40px) translateY(120px); /* shift left to cut off side */
}

.scroll-hover-trigger {
  position: relative;
  width: 320px; /* invisible hover zone */
  height: 320px;
}

.scroll-round {
  position: absolute;
  top: 0;
  left: 0;
  width: 290px;
  height: 290px;
  border: 2px solid #FFD771;
  border-radius: 50%;
  background-color: transparent;
  transition:
    all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.scroll-hover-trigger:hover .scroll-round {
  width: 100px;
  height: 100px;
  left: 80px; /* move the small button *into view* */
  top: 90px;
  background-color: #FFD771;
  border-color: transparent;
  transform: none; /* cancel any transform-based shifting */
}

.arrow-down {
  font-size: 2rem;
  color: #1A1A1A;
  transition: transform 0.3s ease;
}

.scroll-hover-trigger:hover .arrow-down {
  transform: scale(0.9);
}

/* === Social Icons === */
.social-icons {
  position: absolute;
  bottom: 0.4rem;
  right: 1.5rem;
  display: flex;
  gap: 1rem;
  pointer-events: auto;
}

/* Style the actual clickable icon */
.social-icons a {
  background-color: #FF595B;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style the image inside */
.social-icons img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.social-icons img:hover {
  opacity: 1;
  filter: grayscale(0);
}


#hero,
#promptCard,
#photoExplosion,
#heroBottomUI {
  will-change: transform, background-position;
}





/* WHAT IS SYR SECTION */

.what-is-syr {
  width: 100vw;
  padding: 65vh 18vw 25vh 18vw;
}

.first-paragraph {
  margin-bottom: 2.5rem;
}


.wordmark {
  display: inline-block;
  height: 1.1em; /* Matches the line-height of surrounding text */
  vertical-align: baseline; /* Best alignment for text logos */
  margin-right: 0.15em;
  position: relative;
  top: -0.002em; /* Fine-tune vertical alignment */
}






/* TESTIMONIALS SECTION */
/* Inner track */

.testimonials {
  position: relative;
  height: 100vh; /* Now we have scroll space for the banner to animate */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* <-- important for stacking on mobile */
  padding: 0 18vw 0 18vw;
}

/* Inner track */
.video-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Each video */
.video-wrapper {
  width: 39.3%;
  height: 60%;
  transition: all 0.4s ease;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 1;
  will-change: transform, border-radius;
  overflow: hidden;
}

/* Visibility + position states */
.hidden-left {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8) translateX(-50%);
}

.hidden-right {
  opacity: 0;
  pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8) translateX(50%);
}

.left-video {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.85) translateX(-100%);
  filter: blur(1px);
  border-radius: 16px;
}

.right-video {
  opacity: 1;
transform: translate(-50%, -50%) scale(0.85) translateX(100%);
  filter: blur(1px);
  border-radius: 16px;
}

/* Video fill */
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper video:hover {
  transform: scale(1.02);
}

.center-video video {
  cursor: pointer;
}

.center-video {
  width: 50%;
  height: 85vh;
  transform: translate(-50%, -50%);
  filter: none;
  z-index: 2;
  position: relative;
}

.mute-toggle img.mute-icon {
  width: 20px;
  height: 20px;
  pointer-events: none; /* allows clicks to reach the button */
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 15;
  pointer-events: none; /* So clicks on video still work */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-controls button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* Re-enable for button clicks */
  cursor: pointer;
}

.video-wrapper.show-controls .video-controls {
  opacity: 1;
}

.video-controls .play-toggle {
  font-size: 1rem; /* Increase/decrease this value as needed */
}

.mute-toggle img.mute-icon {
  width: 18px;  /* increase/decrease */
  height: 18px;
}

.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 20; /* above video, below controls */
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #FFD771;
  transition: width 0.1s linear;
}

/* Scroll indicators */
.scroll-controls {
  position: relative;
  display: flex;
  justify-content: center;        /* Horizontally center the indicators */
  align-items: center;          /* Push them to the bottom */
  pointer-events: none;           /* Let clicks pass through unless overridden */
  z-index: 5;
  gap: 3rem;
  height: 15vh;
}

.scroll-indicator {
  background: #FFD771;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  z-index: 5;
  opacity: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 40px;
  font-weight: bold;
}

.scroll-indicator:hover {
  background: #1A1A1A;
  color: #fff;
  
}

.scroll-indicator::before {
  content: '‹';
}

.scroll-indicator.right::before {
  content: '›';
}

.scroll-controls .scroll-indicator {
  pointer-events: auto; /* restore pointer interaction */
}





/* EMOTIONAL HOOK */

.emotional-hook {
  width: 100vw;
  padding: 0vh 18vw 24vh 18vw;
  text-align: center;
  position: relative;
}

/* Container for layout consistency */
.emotional-hook-container {
  margin: 0 auto;
}

/* Uppercase eyebrow heading */
.emotional-section-eyebrow {
  color: #FF595B;
}






/*  PROMPT AUTHORS SECTION */

.prompt-authors-section {
  width: 100vw;
  padding: 20vh 18vw 24vh 18vw;
  display: flex;
  text-align: center;
  flex-direction: column;
}

.prompt-authors-heading {
  color: #FF595B;
}

.prompt-authors-subtext {
  padding-bottom: 3rem;
}

/* Card Row */
.author-card-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;          
  padding: 0;  
  gap: 1vw;  
  overflow: visible;
}

/* Card Base */
.author-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* evenly distributes space between square and caption */
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  
  background-color: #F8F2DC;
  height: auto;
  width: 20.5vw;
  aspect-ratio: 3/4;
}

/* Individual Card Rotations*/
.author1 {
  transform: rotate(-4deg);
}
.author2 {
  transform: rotate(2deg);
}
.author3 {
  transform: rotate(-2.5deg);
}



/* Polaroid square section */
.polaroid-square {
  background-color: white;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.yellow {
  background-color: #FFD771; 
}

.purple {
  background-color: #8FA2FD; 
}

.pink {
  background-color: #FF81AA; 
}

/* Emoji */
.polaroid-square img {
  width: 7vw;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* Heading inside square */
.polaroid-square h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

.polaroid-caption {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 0 .6rem;
  text-align: center;
}

.strong-text {
  font-weight: 600; /* Or 700 for even bolder */
  color: #1A1A1A; /* Optional: emphasize with consistent dark color */
}

/* Caption area */
.polaroid-caption p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #1A1A1A;
  line-height: 1.5;
}

.card-with-hover {
  position: relative;
  display: inline-block;
}

/* Hide player label by default */
.player-label {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: black;
  background: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

/* Circle dot */
.player-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #FF595B; /* Default – can override per card */
}

/* Show label on hover */
.card-with-hover:hover .player-label {
  opacity: 1;
  transform: scale(1);
}

/* === Positioning + unique colors === */

/* Card 1 */
.card-1 .player-label {
  top: 20%;
  left: -50%;
}
.card-1 .player-dot {
  background-color: #FFD771;
}

/* Card 2 */

.card-2 .player-2a {
  top: -10%;
  left: -100%;
}
.card-2 .player-2a .player-dot {
  background-color: #8FA2FD;
}

.card-2 .player-2b {
  top: -15%;
  left: 200%;
}
.card-2 .player-2b .player-dot {
  background-color: #8FA2FD;
}

/* Card 3 */
.card-3 .player-label {
  top: 60%;
  left: 110%;
}
.card-3 .player-dot {
  background-color: #FF81AA;
}

.card-with-hover {
  position: relative;
  display: inline-block;
}

.player-bubble {
  position: absolute;
  top: var(--top-offset, 0);
  left: var(--left-offset, 100%);
  background-color: var(--bubble-color, #FF595B);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

/* Show label on hover or .visible class */
.card-with-hover:hover .player-label,
.card-with-hover.show-label .player-label {
  opacity: 1;
  transform: scale(1);
}







/* WAITLIST SECTION */

.waitlist-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0vh 18vw 20vh 18vw;
  box-sizing: border-box;
  background-color: #FFD771;
  z-index: 1;
  position: relative;
}

/* ✅ This is NEW */
.waitlist-background-blocker {
  position: absolute;
  top: -100vh; /* stretches up to hide body background when curtain lifts */
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFD771; /* same as waitlist */
  z-index: -1;
  pointer-events: none;
}

.waitlist-same {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #1A1A1A;
}

.waitlist-heading {
  color: #1A1A1A;
}

 .waitlist-subtext {
    padding-bottom: 2.5rem;
  }

  .waitlist-form {
  display: flex;
  gap: 1rem;
  justify-content: flex-start; /* ← Align children to the left */
  align-items: flex-end; /* align items by their bottom edge */
}

  .email-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }


  .email-wrapper input {
    border: none;
    border-bottom: 2px solid #1A1A1A;
    background: transparent;
    padding: 0.5rem 0;
    width: 32vw;
    outline: none;
  }

  .email-wrapper input::placeholder {
  color: #1A1A1A;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 1; /* Important for Safari, which defaults to 0.5 */
}

  .arrow-button {
  background-color: #FFFFFF;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.arrow-button:hover {
  background-color: #FF595B;
  color: white;
}

.waitlist-success-message {
  display: none;
  margin-top: 0.5rem;
  color: #FF595B; /* Or whatever color you want */
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}



.waitlist-left {
  width: 60%;
}

.waitlist-right {
  width: auto;
  display: flex;
  gap: 4rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-column h4 {
  padding-bottom: 2rem;
  font-family: 'MyCustomFont', sans-serif;
}

.link-column a {
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Footer */
.waitlist-footer {
  width: 100%;
  background-color: #FFD771;
}

.footer-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1.2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 3vw 1.2rem 3vw;

}

.footer-left a {
  text-decoration: underline;
}


.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: row;
  gap: 2rem; /* horizontal space between links */
}

.footer-right img {
  height: 2rem;      /* matches font size */
  width: auto;       /* keeps aspect ratio */
  vertical-align: middle;
}



/* Overlay background */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto; /* <-- this allows the modal to scroll when content is long */
  overscroll-behavior: contain; /* prevents bouncing/scroll chaining to body */

}

/* Modal box */
.contact-modal {
  background: white;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 3rem;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
  text-align: left;
  display: flex;
  flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* block scroll on the main form */
}

.contact-modal textarea {
  height: 150px; /* or larger if you want */
  resize: vertical;
}

.modal-scroll-content {
  overflow-y: auto;
  max-height: 100%;
  
  
   flex-grow: 1;
}

.contact-modal h2 {
  font-family: 'MyCustomFont', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1A1A1A;
  padding-bottom: 0;
}

.contact-modal p {
  font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-modal label {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1.2rem;
  color: #1A1A1A; /* You can customize this color */
  font-family: 'Poppins', sans-serif;
}

.contact-modal input[type="text"],
.contact-modal input[type="email"],
.contact-modal textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: .9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 0.4rem;
  box-sizing: border-box;
  resize: vertical; /* lets textarea resize vertically */
  font-family: 'Poppins', sans-serif;
}

.contact-modal textarea {
  height: 100px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  margin-top: 1.5rem;
  background-color: #FF595B;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background-color: #333;
}

/* Close Button */
.close-modal {
  margin-top: 0.8rem;
  background: none;
  color: #1A1A1A;
  border: 1px solid #ccc;
  cursor: pointer;
  width: 100%;
  padding: 0.8rem;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 3rem;
}

.contact-modal input[type="text"]:focus,
.contact-modal input[type="email"]:focus,
.contact-modal textarea:focus {
  border-color: #FF595B; /* or whatever highlight color you prefer */
  outline: none; /* removes the default browser outline */
}

.contact-success-message {
  display: none;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #FF595B; /* Or another pop color if you want */
  font-family: 'Poppins', sans-serif;
  text-align: center;
}




  

/* MEDIA QUERIES */


/* Small to large phones */
@media (min-width: 320px) and (max-width: 768px) {

  html, body {
  overflow-x: hidden;
  width: 100%;
}

.global-headings {
  font-weight: 600;
  font-size: 1.6rem;
  padding-bottom: .7rem;
}

.global-buttons {
  padding: .8rem 1.5rem;
  font-size: 1rem;
}

.global-paragraphs {
  font-size: 1.09rem;
  line-height: 1.6;
  font-weight: 500;
}

.global-round-buttons {
  width: 65px;
  height: 65px;
}

/* HERO SECTION */


.top-bar {
  flex-direction: row;
  padding: 2vh 6vw 0 6vw;
}

.logo-icon {
  display: block;
  width: 10vw;
  height: auto;
}

.letter {
  height: 5vh;
}

.letter-container {
  gap: 5px;
}

.camera-roll-wrapper {
  width: 40vw;
}

.social-icons {
  right: .5rem;
}

.photo-explosion {
  pointer-events: none; /* prevent scroll interaction */
}

.prompt-card {
  width: 50vw;
}  

.prompt-text::before {
  font-size: 1rem;
}  

.prompt-card p {
  margin: 0 auto 1.4rem auto; /* push space between text and button */
} 

.prompt-button {
  padding: 1rem 1.3rem;
}  

.prompt-button.clicked {
  padding: .8rem 1.5rem;
}

.button-wordmark {
  height: .9em;
}  

.fly-photo {
  width: 25vw;
}  

.photo1 {
  z-index: 6;
}

.photo2 {
  z-index: 10;
}

.photo3 {
  z-index: 7;
}

.photo4 {
  z-index: 8;
}

.photo5 {
  z-index: 9;
}

.photo6 {
  z-index: 5;
}

.scroll-indicator {
  display: none;
} 

.scroll-down {
  display: none;
}   

  
/* WHAT IS SYR SECTION */

.what-is-syr {
  padding: 41vh 6vw 25vh 6vw;
  margin-bottom: -8vh;
}

.first-paragraph {
  margin-bottom: 2rem;
}


/* TESTIMONIALS SECTION */

.testimonials {
  padding: 0 0 0 0;
}

.video-carousel {
  height: 80vh;
}

.video-wrapper {
  width: 50%;
}

.center-video {
  width: 90%;
  height: 80vh;
}
 
.scroll-controls {
  gap: 2.5rem;
  z-index: 10;
  height: 20vh;
}

.scroll-indicator {
  position: relative;
  display: flex;
}

.video-controls {
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.video-controls button {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.progress-container {
  height: 4px;
}

.video-controls .play-toggle {
  font-size: 1rem; /* Increase/decrease this value as needed */
}

.mute-toggle img.mute-icon {
  width: 12px;  /* increase/decrease */
  height: 18px;
}


/* PROMPT AUTHORS SECTION  */
  
.prompt-authors-section {
  padding: 10vh 0 0vh 0;
  text-align: left;
}

.authors-container {
    width: 100%;
    overflow-x: visible;
  }

  .prompt-authors-heading {
    padding: 0 6vw 0 6vw;
  }
  

  .prompt-authors-subtext {
    width: 100%;
    padding: 0 4vw 5vh 6vw;
  }


  .author-card-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    justify-content: flex-start;
    padding-left: 6vw;
    padding-right: 6vw;

  }

  .author-card-row::-webkit-scrollbar {
  display: none;
}

  .author-card {
    width: 66vw;
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
    padding: 1rem;
  }

  .polaroid-square img {
    width: 25vw;
  }

  .polaroid-caption {
    padding: 0 0rem;
  }

  .polaroid-caption p {
    font-size: 1rem;
  }

  .player-label {
    display: none;
  }

  .suggest-button {
    margin-top: 3rem;
    width: 85%;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .author-card-row::-webkit-scrollbar {
  display: none;
}

  /* Remove rotation on mobile */
  .author1,
  .author2,
  .author3 {
    transform: none;
  }


  /* ===== EMOTIONAL HOOK SECTION ===== */
.emotional-hook {
  padding: 18vh 6vw 18vh 6vw;
}


.waitlist-section {
    flex-direction: column;
    align-items: center;
    padding: 0 6vw 15vh 6vw;
    box-sizing: border-box;
  }

  .waitlist-same {
    font-size: 1rem;
  }

  .waitlist-left {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
  }

 .waitlist-form {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.waitlist-heading {
  padding-bottom: 1rem;
  margin-top: -8vh;
}

.waitlist-subtext {
    
    padding-bottom: 5rem;
  }

  .email-wrapper input {
    width: 63vw;
  }

  .arrow-button {
    font-size: 1.5rem;
  }

  .email-wrapper input::placeholder {
    font-size: .9rem;
  }

  .waitlist-right {
    justify-content: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
  }

  .link-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem; /* spacing between Info, About, Contact */
}

.link-column h4 {
  padding-bottom: 0; /* remove the bottom space */
}

  .link-column h4 {
    font-size: 1rem;
  }

  .waitlist-left {
  width: 100%;
}

.waitlist-right {
  width: 100%;
}

.footer-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 6vw 1.2rem 6vw;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

  .footer-social img {
    width: 20px;
    height: 20px;
  }


.contact-modal {
    width: 85vw;
    max-height: 90vh;
    padding-right: 1.2rem;
  padding-left: 1.2rem;
  padding-top: 1.5rem;
  overflow-y: auto;
  }

  .contact-modal h2 {
    font-size: 2rem;
  }

   .contact-modal p,
  .contact-modal label {
    font-size: .9rem;
    line-height: 1.5;
  }

  .contact-modal input[type="text"],
  .contact-modal input[type="email"],
  .contact-modal textarea {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

  .submit-btn {
    font-size: 0.9rem;
    padding: 0.7rem;
  }


  .close-modal {
    padding: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }


#formSuccess {
    font-size: 0.85rem;
    text-align: center;

}
}



/* LARGE MONITORS */

@media (min-width: 1920px) {

.global-headings {
    font-size: 4.5rem;
}

.global-paragraphs {
  font-size: 2.8rem;
}

.global-round-buttons {
  width: 100px;
  height: 100px;
}

.global-buttons {
  padding: 1.5rem 2rem;
  font-size: 2rem;
  font-weight: 500;
}

.logo-icon {
  width: 3vw;
}
  
.prompt-text::before {
  font-size: 2rem;
}

.prompt-button {
  padding: 1.9rem 2.6rem;
}

.button-wordmark {
  height: 1em;
}

.polaroid-caption p  {
  font-size: 1.6rem;
}

.waitlist-same {
  font-size: 1.6rem;
}

.email-wrapper input::placeholder {
  font-size: 1.1rem;
}

.waitlist-subtext {
  padding-bottom: 6rem;
}

.scroll-hover-trigger {
  width: 400px; /* invisible hover zone */
  height: 400px;
}

.scroll-round {
  width: 350px;
  height: 350px;
}
  

}



@media (max-width: 1050px) and (orientation: landscape) {

.global-buttons {
  padding: .7rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
}

.global-paragraphs {
  font-size: .9rem;
  line-height: 1.6;
  font-weight: 500;
}

.global-headings {
  font-weight: 600;
  font-size: 2rem;
  padding-bottom: .1rem;
}

/* HERO-SECTION */

.top-bar {
  flex-direction: row;
  padding: 3vh 3vw 0 3vw;
}

.logo-icon {
  width: 4.5vw;
}
  
.letter {
  height: 10vh;
}

.camera-roll-wrapper {
  width: 20vw;
}

.fly-photo {
  width: 10vw;
  border-radius: 6px;
}

.prompt-card {
  width: 26vw;
  border-radius: 10px;
}

.prompt-button {
    padding: 1rem 1rem;
  }

.button-wordmark {
    height: 1em;
  }


/* WHAT IS SYR SECTION */

.what-is-syr {
  padding: 60vh 11vw 20vh 11vw;
}

.wordmark {
  height: 1.5em;
}

/* TESTIMONIALS SECTION */

.testimonials {
  height: 150vh;
}

.video-carousel {
  height: 110vh;
  width: 100%;
}  

.center-video {
  width: 40%;
  height: 90vh;
}

.video-wrapper {
  width: 30%;
}


/* TESTIMONIALS SECTION */

.prompt-authors-section {
  padding: 20vh 10vw 0vh 10vw;
  text-align: center;
}

.prompt-authors-subtext {
  padding-bottom: 3rem;
}

.author-card-row {
  width: 100%;
  gap: 1vw;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.author-card {
  width: 25vw;
  padding: .5rem;
  aspect-ratio: 3 / 4.8;
}

.polaroid-square img {
    width: 10vw;
  }

.polaroid-caption p {
  font-size: .9rem;
}


/* PROMPT AUTHORS SECTION */
.author1 {
  transform: rotate(-4deg);
}
.author2 {
  transform: rotate(2deg);
}
.author3 {
  transform: rotate(-2.5deg);
}


  /* EMOTIONAL HOOK SECTION */

  .emotional-hook {
  padding: 20vh 6vw 20vh 6vw;
}


  /* CONTACT MODAL */

.contact-modal {
    max-height: 90vh;
    width: 90vw;
    overflow-y: auto;
    padding-right: 1.5rem;
  padding-left: 1.5rem;
  padding-top: 2.5rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
  }

  .contact-modal h2 {
    font-size: 2rem;
  }

  .contact-modal p,
  .contact-modal label {
    font-size: 0.8rem;
  }

  .contact-modal input[type="text"],
  .contact-modal input[type="email"],
  .contact-modal textarea {
    font-size: 0.8rem;
    padding: 0.5rem;
  }


  .close-modal {
    font-size: 0.9rem;
    padding: 0.6rem;
    margin-bottom: 2.5rem;
  }

  #formSuccess {
    font-size: 0.85rem;
    text-align: center;
  }

}





.disable-photo-hover .fly-photo:hover::before,
.disable-photo-hover .fly-photo:hover {
  transform: none !important;
  z-index: initial !important;
}













  










