/* ========================================
   Shelby's Cafe Diary - Main Stylesheet
   ======================================== */

/* ========================================
   Fonts
   ======================================== */
@font-face {
  font-family: "Lovelo-Black";
  src:
    url("../assets/fonts/lovelo/Lovelo_Black.eot") format("eot"),
    url("../assets/fonts/lovelo/Lovelo_Black.woff") format("woff"),
    url("../assets/fonts/lovelo/Lovelo_Black.ttf") format("truetype"),
    url("../assets/fonts/lovelo/Lovelo_Black.svg#Lovelo-Black") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --color-cream: #f4f0ee;
  --color-pink: #F49ABE;
  --color-green: #8e9c7c;
  --color-green-dark: #7A9174;
  --color-green-light: #ECE8E9;
  --color-yellow: #FEE267;
  --color-blue: #6aa7cd;
  --color-text: #4A4A4A;
  --color-text-light: #888888;
  --color-white: #FFFFFF;

  --font-hand: 'Caveat', cursive;
  --font-sans: 'komet', sans-serif;
  --font-text: 'helvetica-neue-lt-pro', sans-serif;

  --size-inner: 1000px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-text);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 2px;
  overflow-x: hidden;
}

#root {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 800;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-text);
  font-weight: 700;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

.container {
  max-width: var(--size-inner);
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .container {
    padding: 0 15px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

/* ========================================
   Scroll Animations
   ======================================== */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.deco-animate {
  opacity: 0;
}

.deco-animate.is-visible {
  animation: floatUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.deco-animate.delay-1 {
  animation-delay: 0.1s;
}

.deco-animate.delay-2 {
  animation-delay: 0.2s;
}

.deco-animate.delay-3 {
  animation-delay: 0.3s;
}

.deco-animate.delay-4 {
  animation-delay: 0.4s;
}

.deco-animate.delay-5 {
  animation-delay: 0.5s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 90px 0;
  background-image: url("../assets/images/common/bg-paper-texture.webp");
  background-size: 100%;
  background-repeat: repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: var(--size-inner);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-text {
  flex: 4;
}

.script-title {
  display: block;
  position: relative;
  width: 70%;
  font-family: var(--font-hand);
  margin-left: 30px;
  margin-bottom: -3px;
  z-index: 1;
}

.main-title {
  font-family: var(--font-sans);
  padding: 5px 20px 10px;
  font-size: 3.4rem;
  color: transparent;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0px;
  white-space: nowrap;
  line-height: 1.0;
  font-weight: 800;
  position: relative;
}

.main-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero/bg-title.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mix-blend-mode: multiply;
}

.main-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
}

.subtitle {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-green);
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 30px;
}

@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(113, 169, 201, 0.4);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(113, 169, 201, 0.7);
  }
}

.btn-blue {
  display: inline-block;
  background-color: #71A9C9;
  color: white;
  padding: 8px 70px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(113, 169, 201, 0.4);
  animation: gentlePulse 2.5s ease-in-out infinite;
  animation-delay: 1s;
}

.btn-blue:hover {
  background-color: #6CA0BE;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(113, 169, 201, 0.5);
  animation: none;
}

.hero-image {
  flex: 4;
  position: relative;
}

.image-placeholder img {
  border-radius: 10px;
  transform: rotate(3deg);
}

.hero-btn-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 130px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-text {
    width: 100%;
    order: 1;
  }

  .hero-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    order: 2;
  }

  .hero-btn-mobile {
    order: 3;
    display: block;
    margin-top: 10px;
  }

  .hero-btn-desktop {
    display: none;
  }

  .script-title {
    width: 60%;
    margin: 0 auto;
    margin-bottom: -5px;
  }

  .main-title {
    font-size: 2.6rem;
    padding: 5px 15px 10px;
  }

  .main-title::before {
    background-size: 100% 100%;
  }

  .subtitle {
    font-size: 1.0rem;
    margin: 10px 15px 20px;
    line-height: 1.6;
  }

  .hero .btn-blue {
    padding: 10px 80px;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-left: 0;
  }

  .image-placeholder img {
    transform: rotate(0deg);
  }
}

@media (max-width: 400px) {
  .main-title {
    font-size: 2.0rem;
  }
}

/* ========================================
   Intro Section
   ======================================== */
.intro {
  background-color: var(--color-pink);
  padding: 60px 0;
  color: white;
  text-align: center;
  position: relative;
  margin-top: -30px;
  z-index: 2;
  background-image: url("../assets/images/intro/bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.intro-content {
  max-width: 700px;
}

.intro-content p {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  max-width: var(--size-inner);
  margin: 0 auto 20px;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-content p .maker {
  background-image: url(../assets/images/intro/text-maker.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 8px;
  white-space: nowrap;
}

.intro-content p .underline {
  background-image: url(../assets/images/intro/text-underline.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left 3px bottom;
  padding: 3px 5px 3px;
  white-space: nowrap;
}

.float-icon {
  position: absolute;
  font-size: 3rem;
}

.drink-icon {
  right: 15%;
  top: -40px;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .intro {
    padding: 40px 0 60px;
    background-image: url("../assets/images/intro/sp-bg.png");
    background-size: 100% 99%;
  }

  .intro-content {
    max-width: 400px;
  }

  .intro-content p {
    font-size: 0.85rem;
    padding: 0 15px;
    line-height: 1.6;
    letter-spacing: 0.5px;
  }

  .intro-content p br {
    display: none;
  }
}

/* ========================================
   About Section
   ======================================== */
.about {
  background-color: #F49ABE;
  padding: 80px 0 140px;
  position: relative;
  color: white;
  z-index: 2;
  margin-top: -1px;
}

.about-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-decoration img {
  width: 100%;
  height: auto;
}

.about-deco-1 {
  width: 120px;
  top: -70px;
  left: calc(50% - var(--size-inner) / 2 - 50px);
}

.about-deco-2 {
  width: 120px;
  top: -150px;
  right: calc(50% - var(--size-inner) / 2 - 50px);
}

.about-deco-3 {
  width: 180px;
  top: 70px;
  right: calc(50% - var(--size-inner) / 2 - 110px);
}

.about-deco-4 {
  width: 200px;
  bottom: -80px;
  left: calc(50% - var(--size-inner) / 2 - 60px);
}

.about-deco-5 {
  width: 180px;
  bottom: 50px;
  right: calc(50% - var(--size-inner) / 2 - 80px);
}

.script-title-center {
  font-family: var(--font-hand);
  font-size: 4rem;
  text-align: center;
  margin-bottom: 10px;
}

.script-title-center img {
  width: 50%;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.about-image,
.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: start;
}

.icon {
  font-size: 2.5rem;
  background: white;
  color: var(--color-pink);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  opacity: .8;
}

.icon svg {
  transform: scale(1.3);
}

.icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0 80px;
  }

  .about-decoration {
    display: block;
  }

  .about-deco-1 {
    width: 60px;
    top: -50px;
    left: 30px;
  }

  .about-deco-2 {
    width: 70px;
    top: -70px;
    right: 10px;
  }

  .about-deco-3 {
    width: 70px;
    top: 70px;
    bottom: 200px;
    right: 10px;
  }

  .about-deco-4 {
    width: 90px;
    bottom: -40px;
    left: 10px;
  }

  .about-deco-5 {
    width: 80px;
    bottom: 30px;
    right: 15px;
  }

  .script-title-center img {
    width: 70%;
  }

  .about-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-image img {
    max-width: 330px;
    margin: 0 auto;
  }

  .about-text p {
    font-size: 0.90rem;
    font-weight: 400;
    line-height: 1.7;
    padding: 0 15px;
    max-width: 330px;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
  }
}

/* ========================================
   Features Section
   ======================================== */
.features {
  margin-top: -1px;
  padding: 70px 0 160px;
  position: relative;
  background-color: var(--color-green);
  background-image:
    url(../assets/images/feature/bg-top.webp),
    url(../assets/images/feature/bg-bottom.svg);
  background-repeat:
    no-repeat,
    repeat-x;
  background-size:
    100% 350px,
    auto;
  background-position:
    center top,
    bottom;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-green);
  font-weight: 800;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.feature-card {
  text-align: left;
}

.feature-image img {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--color-green);
  border-top: none;
}

.feature-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-green-light);
}

.feature-text strong {
  margin-bottom: 5px;
}

.center-btn {
  margin-top: 80px;
  text-align: center;
}

.btn-yellow {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-green);
  padding: 6px 70px;
  border-radius: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-yellow:hover {
  background-color: #EBC050;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0 120px;
    background-size: 100% 250px, auto;
    background-image:
      url(../assets/images/feature/sp-bg-top.webp),
      url(../assets/images/feature/bg-bottom.svg);
  }

  .section-title {
    font-size: 2.3rem;
    margin-bottom: 30px;
    padding: 10px 15px;
    line-height: 1.2;
  }

  .features-grid {
    margin: 0 15px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .feature-text {
    font-size: 0.8rem;
  }

  .feature-text strong {
    font-size: 0.85rem;
  }

  .btn-yellow {
    padding: 6px 60px;
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 2.0rem;
  }
}

/* ========================================
   Star Gallery Section
   ======================================== */
.star-gallery {
  position: relative;
  z-index: 3;
  background-color: var(--color-cream);
  margin-top: -1px;
  padding: 30px 0;
}

.star-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.star-decoration img {
  width: 100%;
  height: auto;
}

.star-deco-1 {
  width: 120px;
  top: -200px;
  right: calc(50% - var(--size-inner) / 2 - 60px);
}

.star-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.star-wrapper {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}

.star-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
}

.star-item {
  width: 320px;
  height: 320px;
}

.star-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.star-wrapper:nth-child(1) {
  transform: rotate(-10deg);
}

.star-wrapper:nth-child(2) {
  transform: rotate(5deg);
  margin-top: 30px;
}

.star-wrapper:nth-child(3) {
  transform: rotate(-5deg);
}

@media (max-width: 768px) {
  .star-gallery {
    padding: 20px 0;
  }

  .star-decoration {
    display: block;
  }

  .star-deco-1 {
    width: 70px;
    top: -100px;
    right: 10px;
  }

  .star-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .star-item {
    width: 280px;
    height: 280px;
  }

  .star-wrapper:nth-child(1),
  .star-wrapper:nth-child(2),
  .star-wrapper:nth-child(3) {
    transform: rotate(0deg);
    margin-top: 0;
  }

  .star-wrapper:hover {
    transform: scale(1.05) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .star-item {
    width: 250px;
    height: 250px;
  }
}

/* ========================================
   Sneak Peek Section
   ======================================== */
.sneak-peek {
  background:
    url(../assets/images/peek/bg-top.svg),
    url(../assets/images/peek/bg.webp);
  background-size:
    100% auto,
    cover;
  background-position:
    top -1px center,
    bottom center;
  background-repeat:
    repeat-x,
    no-repeat;
  padding: 7vw 0;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -2px;
}

.peek-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.peek-decoration img {
  width: 100%;
  height: auto;
}

.peek-deco-1 {
  width: 120px;
  top: -30px;
  transform: translateY(-50%);
  left: calc(50% - var(--size-inner) / 2 - 0px);
}

.script-title-white {
  max-width: 700px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 3.5rem;
  color: white;
  margin: 10px auto 50px;
  letter-spacing: 2px;
  background-image: url("../assets/images/peek/bg-title.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: -20px 0;
  white-space: nowrap;
}

.sneak-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.page-wrapper {
  width: 300px;
  transition: transform 0.3s;
}

.page-wrapper img {
  width: 100%;
  border-radius: 5px;
}

.page-wrapper:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
}

@media (max-width: 768px) {
  .sneak-peek {
    padding: 60px 0;
    background-size: 100% auto, auto 120%;
  }

  .sneak-peek .container {
    margin: 0 10px;
  }

  .peek-decoration {
    display: block;
  }

  .peek-deco-1 {
    width: 80px;
    top: -40px;
    left: 10px;
    transform: none;
  }

  .script-title-white {
    font-size: 2.4rem;
    margin-bottom: 30px;
    padding: 10px 15px;
    background-size: 100% 100%;
    background-position-x: -5vw;
    letter-spacing: 0px;
  }

  .sneak-grid {
    gap: 20px;
  }

  .page-wrapper {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .script-title-white {
    font-size: 2.0rem;
  }
}

/* ========================================
   Footer Section
   ======================================== */
.footer {
  position: relative;
  z-index: 4;
  background-image: url("../assets/images/common/bg-paper-texture.webp");
  background-size: 100%;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -1px;
}

.cta-banner {
  background-color: var(--color-pink);
  padding: 15px 0 10px;
  text-align: center;
  color: white;
  width: 100%;
}

.cta-banner h2 {
  max-width: var(--size-inner);
  font-family: var(--font-sans);
  font-size: 3.2rem;
  margin: 0 auto;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-content {
  max-width: var(--size-inner);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px 20px;
  text-align: left;
}

.footer-image img {
  max-width: 300px;
}

.footer-text {
  max-width: 450px;
}

.script-title-footer {
  font-family: var(--font-hand);
  font-size: 2.5rem;
  color: #AAA;
  display: block;
  margin-bottom: -5px;
  width: 70%;
}

.footer-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 3rem;
  color: var(--color-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.footer-text p {
  color: var(--color-green);
  margin-bottom: 30px;
  line-height: 2.2;
  font-size: .9rem;
  font-weight: bold;
}

.footer-text .btn-blue {
  display: block;
  width: fit-content;
  font-size: 1.2rem;
  padding: 8px 60px;
  margin: 40px auto 0;
}

.footer-bottom {
  width: 100%;
  background-color: var(--color-green);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  gap: 10px;
}

.footer-bottom a {
  font-size: .8rem;
  color: var(--color-white);
}

.footer-handle {
  font-family: var(--font-hand);
  font-size: 1.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 2.3rem;
    letter-spacing: 1px;
    padding: 0 20vw;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 50px 20px;
  }

  .footer-image img {
    max-width: 280px;
  }

  .footer-text {
    max-width: 100%;
    padding: 0;
  }

  .script-title-footer {
    width: 70%;
    margin: 30px auto 0;
    margin-bottom: 0px;
    max-width: 280px;
  }

  .footer-title {
    font-size: 2.6rem;
    align-items: center;
    margin-bottom: 15px;
  }

  .footer-text p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.9;
  }

  .footer .btn-blue {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px 20px;
  }

  .footer-handle {
    font-size: 1.3rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .cta-banner h2 {
    font-size: 2.3rem;
    letter-spacing: 1px;
    padding: 0 15vw;
  }

  .footer-title {
    font-size: 2.2rem;
  }
}

/* ========================================
   Scroll Indicator
   ======================================== */
.scroll-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scroll-indicator.visible {
  opacity: 1;
}

.scroll-cup {
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-out;
  pointer-events: auto;
  cursor: pointer;
}

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

.cup-icon {
  display: block;
}

.steam-line {
  opacity: 0.6;
}

.steam-1 {
  animation: steam 2s ease-in-out infinite;
}

.steam-2 {
  animation: steam 2s ease-in-out infinite 0.3s;
}

.steam-3 {
  animation: steam 2s ease-in-out infinite 0.6s;
}

@keyframes steam {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 0.7;
    transform: translateY(-3px);
  }
}

.progress-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
  opacity: 0.6;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  background-color: var(--color-pink);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .scroll-indicator {
    right: 10px;
  }

  .cup-icon {
    width: 28px;
    height: 28px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }

  .progress-dots {
    gap: 5px;
  }
}

@media (max-height: 500px) {
  .scroll-indicator {
    display: none;
  }
}