@font-face {
  font-family: 'akira';
  src: url(../Fonts/Akira\ Expanded\ Demo.otf);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 100px;
  height: 200vh;
  background: rgba(34,34,34,1) url(../Images/topographic.png) center / 250% no-repeat;
}

.promo-text {
  text-align: center;
  margin-bottom: 5px;
}

.promo-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fe9d34;
  margin-bottom: -8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.promo-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 54px;
  font-weight: bold;
  margin: 5px 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.promo-button {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  margin-top: 5px;
  padding: 15px 31px;
  background: #f6a247;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.mock-text {
  display: flex;
  position: absolute;
  justify-content: center;
  left: 8%;
  top: 40%;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  padding: 27px;
  width: 400px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.s15mock {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  overflow: hidden;
  height: 600px;
  width: 94%;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.s15 {
  max-width: 100%;
  margin-top: -90px;
  display: block;
}

li a {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding-right: 25px;
  display: inline-block;
}

li a:hover {
  color: #ff931e;
  text-decoration: underline;
  text-decoration-color: #ff931e;
  text-underline-offset: 4.5px;
  text-decoration-thickness: 2.5px;
}

.head-arrivals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
}

.line {
  flex: 1;
  height: 2px;
  background: #ff931e;
}

.head-arrivals h1 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.date {
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.date h1 {
  color: #dbdbdb;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  text-transform: uppercase;
  font-size: 12px;
}

.poster-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  justify-items: center;
  text-align: center;
  margin: 60px auto;
  max-width: 1300px;
  padding: 0 40px;
  box-sizing: border-box;
}

.poster-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster-box {
  position: relative;
  width: 250px;
  height: 340px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: none;
  will-change: transform;
}

.poster-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid orange;
  border-radius: 10px;
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
}

.poster-box:hover::after {
  opacity: 1;
  transform: scale(1);
}

.poster-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.poster-box2 {
  position: relative;
  width: 250px;
  height: 340px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.poster-box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.poster-title {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 18px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.poster-title::after {
  content: none;
}

.poster-price {
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 4px;
  font-size: 14px;
  font-weight: bolder;
  color: #e8e8e8;
}

.shop-now {
  display: flex;
  justify-content: center;
}

.shop-button {
  width: 150px;
  height: 30px;
  background: #ff931e;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  padding-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-align: center;
  text-decoration: none;
}

.shop-button a {
  display: flex;
  justify-content: center;
  padding-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 17px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.section-line {
  margin-top: 70px;
}

.scroll-to-bottom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fe9d34;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease;
  will-change: transform;
}

.scroll-to-bottom img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.scroll-to-bottom:hover {
  transform: scale(1.1);
}

.scroll-alert {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
  .promo-sub {
    font-size: 26px;
  }

  .promo-title {
    font-size: 40px;
  }

  .poster-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .poster-box,
  .poster-box2 {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .promo-sub {
    font-size: 22px;
  }

  .promo-title {
    font-size: 32px;
  }

  .promo-button {
    font-size: 14px;
    padding: 12px 24px;
  }

  .mock-text {
    position: relative;
    width: 90%;
    padding: 20px;
    margin: 0 auto -40px auto;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
  }

  .s15mock {
    position: relative;
    height: 600px;
    margin-top: 60px;
    overflow: hidden;
  }

  .s15 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
    z-index: 1;
  }

  .poster-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .poster-box,
  .poster-box2 {
    width: 200px;
    height: 280px;
  }

  .poster-title {
    font-size: 14px;
  }

  .poster-price {
    font-size: 13px;
  }

  .shop-button {
    font-size: 16px;
    height: 26px;
    width: 130px;
  }
}


@media (max-width: 480px) {
  .promo-sub {
    font-size: 18px;
  }

  .promo-title {
    font-size: 26px;
  }

  .mock-text {
    width: 90%;
    padding: 16px;
  }

  .poster-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .poster-box,
  .poster-box2 {
    width: 90%;
    height: 260px;
  }

  .shop-button {
    font-size: 14px;
    width: 120px;
    height: 24px;
  }

  .scroll-to-bottom {
    width: 40px;
    height: 40px;
  }

  .scroll-to-bottom img {
    width: 20px;
    height: 20px;
  }

  .scroll-alert {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
}
