/* ---- Frieda Page ---- */
body {
  background-color: white;
  color: black;
  font-family: "Geologica", sans-serif;
  padding: 0;
  margin: 0;
}


.frieda-page-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 5vw 60px 5vw;
  padding-right: 40vw; 
  position: relative;
  z-index: 1;
}


.frieda-hero-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  width: 700px;
  margin-left: 120px;
}

.frieda-title-wrapper {
  flex: 1 1 100%;
  text-align: center;
  width: 100%;
}

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

.zigzag-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  z-index: 1;
}

.frieda-title-img {
  position: relative;
  z-index: 2;
  width: 100%;
}

.frieda-description-box {
  z-index: 4;
  position: relative;
}

.frieda-description {
  flex: 1 1 400px;
  max-width: 700px;
  text-align: right;
  margin-left: auto;
  margin-right: 0vw;
  position: relative;
  z-index: 2;
}


.frieda-description-bg-wrapper {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 130%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.8; /* adjust transparency */
  pointer-events: none; /* prevent it from interfering with clicks */
}

.frieda-description-bg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: -1;
}

.frieda-description h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.frieda-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.icon-links {
  position: relative;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.icon-links img {
  height: 56px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-links img:hover {
  transform: scale(1.05);
}

.frieda-illustration {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: auto;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none; 
}

.frieda-illustration img {
  height: 100vh;
  width: auto;
  max-width: none;
  object-fit: contain;
  
}


.frieda-trailer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.trailer-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  max-width: 1000px;
}

.trailer-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.wishlist-sticker {
  display: flex;
  justify-content: center;   
  align-items: center;       
  width: 100%;
  margin-top: 20px;
}

.wishlist-sticker img {
  width: 500px;               
  max-width: 90%;
  height: auto;
  transition: transform 0.2s ease;
}

.wishlist-sticker img:hover {
  transform: scale(1.05);     
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 850px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
  .frieda-illustration {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
  }

  .frieda-illustration img.mobile-only {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .mobile-zigzag-wrapper {
  max-width: 80vw;
  margin: 0 auto;
  position: relative;
}

.mobile-zigzag-wrapper .zigzag-bg {
  width: 130%; /* reduce this if it's too wide */
}

.frieda-title-img {
  width: 100%; /* already applied — this ensures it scales with wrapper */
}
.frieda-hero-section{
  width: 100%;
  margin:0;
}

.frieda-page-content{
  padding-left: 10vw;
  padding-right: 10vw;
  padding-top: 110vw;
}

}