#intro {
    position: absolute;
    width: 100%;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../img/slide-intro/img-bg-intro.jpg);
    background-position: center;
    background-size: cover;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
}

#intro h1 {
    font-size: 1.1rem;
}

#intro h2 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

#intro p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

#intro a {
    text-decoration: none;
    color: var(--gold);
    background-color: var(--blue);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#intro a:hover {
    background-color: var(--gold) ;
    color: var(--blue);
    cursor: pointer;
}

#intro i {
    margin-right: 5px;
}

#home  {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    overflow-x: hidden;
    z-index: 1;
}

#home .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#home .s1 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent), url(../img/slide-intro/img-bg-1.jpg) center/cover no-repeat;
    animation-delay: 0s;
}

#home .s2 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent), url(../img/slide-intro/img-bg-2.jpg) center/cover no-repeat;
    animation-delay: 3s;
}

#home .s3 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent), url(../img/slide-intro/img-bg-3.jpg) center/cover no-repeat;
    animation-delay: 6s;
}

#home .s4 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent), url(../img/slide-intro/img-bg-4.jpg) center/cover no-repeat;
    animation-delay: 9s;
}

.content-home {
    position: absolute;
    color: var(--white);
    bottom: 0;
    left: 50%;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    padding: 0  2rem;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.content-home.show {
    opacity: 1;
    visibility: visible;
}

.content-home h1 {
    font-size: 1.1rem;
}

.content-home h2 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

.quotes {
  margin-top: 1rem;
}

.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 11;
}

.snowflake {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.4; /* Lebih transparan */
  animation: fall-snow linear infinite;
}

/* Animasi salju dengan gerak acak kiri-kanan saat jatuh */
@keyframes fall-snow {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(-20px) rotate(45deg);
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(90deg);
  }
  75% {
    transform: translateY(75vh) translateX(-15px) rotate(135deg);
  }
  100% {
    transform: translateY(100vh) translateX(0) rotate(180deg);
  }
}
