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


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


.bear-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;
}

.bear-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;
}

.bear-title-img {
  position: relative;
  z-index: 2;
  width: 90%;
}

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

@media screen and (min-width: 1750px){
  .bear-zigzags {
    display :none;
  }
}

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

.bear-description-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
}

.bear-description-bg {
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 130%; /* Adjust as needed */
  height: 700px;
  z-index: 0;
  opacity: 1; /* Full opacity as you requested */
}


.bear-description-box {
  z-index: 100;
}

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

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

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

.icon-links {
  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);
}

.bear-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; 
}

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

@media screen and (max-width: 1600px) and (min-width: 850px) {
  .bear-illustration {
    right: -100px;
  }
}


.bear-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;
  z-index: 3;
}

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



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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}
.inbetween-sizes{
  display : none;
}


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

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

  .bear-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 */
}

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

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

}


@media screen and (min-width: 851px) and (max-width: 1200px) {
  .inbetween-sizes{
    display: block;
  }
   .desktop-only {
    display: none;
  }

  .mobile-only {
    display: none;
  }

  .bear-illustration img.inbetween-sizes {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;

  }

}

.store-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 20px;
}
.store-buttons img {
  height: 70px;
  width: auto;
  transition: transform 0.2s ease;
  z-index:10;
  position: relative;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

.store-buttons-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.laurel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: 0;
  max-width: 700px;
  width: 100%;
  position: relative;
  z-index: 2; /* so it sits above the zigzag */
}

.laurel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  z-index:2;
  margin-left: auto;
  margin-right: auto;
}

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

.laurel-grid img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.gra-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 35px;
  transition: transform 0.2s ease;
  width: auto;
}

.gra-link-wrapper{
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 8px auto;
  transition: 0.2s ease;
}

.gra-link-wrapper:hover {
  transform: scale(1.03);
}

.gra-logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 8px auto;
}

.gra-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: black;
  padding-top: 10px;
}

.gra-cta span {
  font-family: "Geologica", sans-serif;
}

.gra-arrow {
  height: 18px;
  width: auto;
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%); /* makes it pure black */
}

@media screen and (max-width: 850px) {
  .laurel-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media screen and (max-width: 850px) {
  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .store-buttons a {
    width: 100%;
    max-width: 300px;
  }

  .store-buttons img {
    width: 100%;
    height: auto;
  }
}