/* =============================================
   SUNDAY SAUCE ENTERTAINMENT — MAIN STYLESHEET
   Converted from Figma export to working CSS
   ============================================= */

/* ── GLOBAL RESET & BASE ── */
.home {
  background-color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.home .landing-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
.home .header {
  width: 100%;
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 50px;
}

/* Subtle dark overlay so text stays readable */
.home .header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 10, 50, 0.45) 0%, rgba(60, 10, 40, 0.2) 70%, transparent 100%);
  z-index: 1;
}

/* Full-bleed background image */
.home .shutterstock-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.home .shutterstock {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home .frame {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 0 0 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.home .group {
  position: absolute;
  top: 24px;
  left: 100px;
  display: block;
  width: auto;
  height: 45px;
  object-fit: contain;
  object-position: left center;
  z-index: 10;
}

.home .text-wrapper {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 58px);
  font-family: var(--h-1-font-family);
  font-weight: var(--h-1-font-weight);
  letter-spacing: var(--h-1-letter-spacing);
  line-height: 1.1;
  white-space: nowrap;
}

.home .div {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0;
  line-height: 1.5;
  max-width: 480px;
  margin-top: 12px;
}

.home .frame-2 {
  position: relative;
  z-index: 2;
  padding: 28px 0 0 100px;
}

.home .button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

.home .button:hover { opacity: 0.85; }

.home .label {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

/* ── LOGO BAR ── */
.home .logotypes-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  background-color: #ffffff;
  margin-top: 10px;
  position: relative;
}

/* fade edges */
.home .logotypes-wrapper::before,
.home .logotypes-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.home .logotypes-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.home .logotypes-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.home .logotypes-marquee {
  width: 100%;
  overflow: hidden;
}

.home .logotypes-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.home .logotypes-track:hover {
  animation-play-state: paused;
}

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

.home .company-logo {
  flex-shrink: 0;
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .company-logo img {
  width: 120px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.home .company-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* MTV SVG renders smaller — force it to match */
.home .company-logo img[src*="MTV"] {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .home .logotypes-track {
    gap: 50px;
    animation-duration: 18s;
  }

  .home .company-logo {
    width: 80px;
    height: 28px;
  }

  .home .company-logo img {
    width: 80px;
    height: 28px;
  }
}

/* ── INTRO / ABOUT SECTION ── */
.home .heading-subheading {
  width: 100%;
  padding: 80px 100px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home .label-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 10px;
  background-color: #df6bab;
  border-radius: 7px;
}

.home .label-2 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 1.15;
}

.home .p {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0;
  line-height: 1.6;
}

.home .div-wrapper {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background-color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 14px;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}

.home .div-wrapper:hover { opacity: 0.85; }

.home .label-3 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

/* ── CARDS SECTION ── */
.home .cards-section {
  width: 100%;
  padding: 60px 100px 80px;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
  background-color: #6fdff9;
  flex-wrap: wrap;
  justify-content: center;
}

.home .card,
.home .card-2,
.home .card-3 {
  flex: 1 1 300px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  background-color: var(--grey);
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid var(--dark);
  box-shadow: 0px 5px 0px #191a23;
}

.home .untitled-design {
  align-self: center;
  width: 144px;
  height: 144px;
  margin-top: 39px;
  object-fit: cover;
}

.home .heading-2,
.home .heading-3,
.home .heading-4 {
  display: flex;
  margin: 17px 35px 0;
  flex-direction: column;
  align-items: center;
}

.home .label-4,
.home .label-6,
.home .label-7 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 24px;
  background-color: #df6bab;
  border-radius: 7px;
}

.home .label-5 {
  font-family: var(--h-3-font-family);
  font-weight: var(--h-3-font-weight);
  color: #ffffff;
  font-size: clamp(20px, 2vw, var(--h-3-font-size));
  text-align: center;
  letter-spacing: var(--h-3-letter-spacing);
  line-height: 1.3;
  font-style: var(--h-3-font-style);
}

.home .text-wrapper-2 {
  margin: 20px 34px 34px;
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.6;
  flex: 1;
}

/* ── MEET THE FOUNDER ── */
.home .heading-subheading-2 {
  width: 100%;
  padding: 80px 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
}

.home .frame-3 {
  flex-shrink: 0;
  width: 25%;
  aspect-ratio: 0.84;
  border-radius: 26px;
  border: 3px solid #000000;
  background-image: url(./img/screenshot-2026-02-06-at-6-49-08-pm-1.png);
  background-size: cover;
  background-position: center;
}

.home .founder-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.home .heading-subheading-2 .heading {
  align-self: flex-start;
}

.home .courtney-maglione-is {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0;
  line-height: 1.75;
}

.home .button-2 {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background-color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 14px;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.home .button-2:hover { opacity: 0.85; }

.home .label-8 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

/* ── SELECTED CREDITS ── */
.home .heading-subheading-3 {
  width: 100%;
  padding: 60px 0 80px;
  box-sizing: border-box;
  background-color: #6fdff9;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home .heading-5,
.home .text-wrapper-3 {
  padding-left: 100px;
  padding-right: 100px;
}

.home .heading-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home .text-wrapper-3 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0;
  line-height: 1.6;
}

.home .credits-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}

.home .credits-arrow {
  all: unset;
  cursor: pointer;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #191a23;
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.15s ease;
  user-select: none;
  z-index: 3;
}

.home .credits-arrow:hover {
  background-color: #df6bab;
  transform: scale(1.08);
}

.home .credits-arrow:active {
  transform: scale(0.95);
}

.home .credits-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.home .credits-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

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

.home .credit-card {
  flex-shrink: 0;
  display: flex;
  background-color: #000;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.home .credit-card img {
  width: 220px;
  height: 330px;
  object-fit: cover;
  display: block;
}

/* ── TESTIMONIALS HEADING ── */
.home .heading-6 {
  display: flex;
  padding: 80px 100px 0;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
}

/* ── TESTIMONIALS CARDS ── */
.home .group-of-cards {
  width: 100%;
  padding: 40px 100px 80px;
  box-sizing: border-box;
}

.home .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.home .content-wrapper {
  flex: 0 1 calc(50% - 15px);
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid #191a23;
  box-shadow: 0px 5px 0px #191a23;
  padding: 40px 35px;
  box-sizing: border-box;
}

.home .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  height: 100%;
}

.home .person { width: 100%; }

.home .picture-and-name {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home .picture {
  position: relative;
  width: 80px;
  height: 78px;
  flex-shrink: 0;
}

.home .vector-8 {
  position: absolute;
  width: 92.59%;
  height: 95.14%;
  top: 4.86%;
  left: 7.41%;
}

.home .mask-group {
  position: absolute;
  width: 92.59%;
  height: 95.14%;
  top: 0;
  left: 0;
}

.home .name,
.home .name-2,
.home .name-3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home .text-wrapper-4 {
  font-family: var(--h-4-font-family);
  font-weight: var(--h-4-font-weight);
  color: #000000;
  font-size: var(--h-4-font-size);
  letter-spacing: var(--h-4-letter-spacing);
  line-height: 1.3;
}

.home .text-wrapper-5 {
  font-family: var(--p-font-family);
  font-weight: var(--p-font-weight);
  color: #000000;
  font-size: 15px;
  letter-spacing: var(--p-letter-spacing);
  line-height: 1.4;
}

.home .line {
  width: 100%;
  height: 1px;
  object-fit: cover;
}

.home .text-wrapper-6 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.home .heading-subheading-4 {
  width: 100%;
  padding: 60px 100px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.home .heading-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home .label-9 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 10px;
  border-radius: 7px;
}

.home .label-10 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: clamp(40px, 5vw, 67px);
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
}

.home .button-3 {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background-color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  transition: opacity 0.2s ease;
}

.home .button-3:hover { opacity: 0.85; }

/* ── FOOTER ── */
.home .footer {
  width: 100%;
  padding: 32px 100px;
  box-sizing: border-box;
  background-color: var(--dark);
  border-radius: 52px 52px 0px 0px;
}

.home .footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.home .social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.home .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.home .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.home .text-wrapper-10 {
  font-family: "Space Grotesk", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ── */
/* ── FONT SCALING (kicks in earlier at 1200px) ── */
@media (max-width: 1200px) {
  .home .text-wrapper {
    font-size: clamp(24px, 3.5vw, 45px);
  }
  .home .div {
    font-size: clamp(14px, 1.8vw, 22px);
    line-height: 1.5;
  }
  .home .label-2 {
    font-size: clamp(28px, 4vw, 60px);
  }
  .home .label-10 {
    font-size: clamp(28px, 4.5vw, 67px);
  }
}

@media (max-width: 900px) {
  /* ── HEADER MOBILE LAYOUT ── */
  .home .header {
    min-height: 360px;
    overflow: hidden;
    display: flex;
    padding: 0 0 40px 0;
  }

  .home .group {
    position: absolute;
    height: 27px;
    top: 16px;
    left: 24px;
    z-index: 10;
  }

  .home .frame {
    position: relative;
    z-index: 2;
    padding: 80px 24px 0 24px;
    max-width: 100%;
  }

  .home .frame-2 {
    position: relative;
    z-index: 2;
    padding: 16px 24px 0 24px;
  }

  /* Keep full-bleed background on mobile */
  .home .shutterstock-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    z-index: 0 !important;
    display: block !important;
  }

  .home .heading-5,
  .home .text-wrapper-3 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home .heading-subheading,
  .home .heading-subheading-2,
  .home .heading-subheading-3,
  .home .heading-subheading-4,
  .home .cards-section,
  .home .group-of-cards,
  .home .heading-6,
  .home .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home .heading-subheading-2 {
    flex-direction: column;
  }

  .home .frame-3 {
    width: 100%;
    aspect-ratio: 1;
  }

  .home .logotypes {
    justify-content: center;
  }

  .home .credits-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .home .credits-outer {
    gap: 10px;
  }

  .home .credit-card img {
    width: 150px;
    height: 225px;
  }

  /* ── MOBILE FONT SIZES ── */
  .home .text-wrapper {
    font-size: clamp(22px, 5vw, 36px);
  }

  .home .div {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.5;
  }

  .home .label,
  .home .label-3,
  .home .label-8 {
    font-size: 14px;
    line-height: 20px;
  }

  .home .label-2 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.15;
  }

  .home .p,
  .home .text-wrapper-2,
  .home .text-wrapper-3,
  .home .text-wrapper-6,
  .home .courtney-maglione-is {
    font-size: 16px;
    line-height: 1.6;
  }

  .home .label-5 {
    font-size: 16px;
  }

  .home .text-wrapper-4 {
    font-size: 15px;
  }

  .home .text-wrapper-5 {
    font-size: 13px;
  }

  .home .label-10 {
    font-size: clamp(28px, 7vw, 50px);
  }

  .home .text-wrapper-10 {
    font-size: 13px;
  }

  .home .button,
  .home .div-wrapper,
  .home .button-2,
  .home .button-3 {
    padding: 12px 22px;
    border-radius: 10px;
  }
}

/* ── MOBILE-ONLY HERO IMAGE (not used — header is full-bleed) ── */
.home .shutterstock-mobile {
  display: none;
}
