body {
  margin: 0;
  background: #f5f5f5;
  font-family: 'Playfair Display', serif;
  color: #111;
}
.mobile-links {
  display: none;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 50px;
  z-index: 10;
}
.star {
  font-size: 22px;
  text-decoration: none;
  color: black;
}
.star:hover {
  opacity: 0.6;
}
.side-left {
  position: fixed;
  bottom: 40px;
  left: 50px;
  display: flex;
  flex-direction: column;
}

.side-right {
  position: fixed;
  bottom: 40px;
  right: 50px;
}

.side-left a,
.side-right a {
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: black;
  margin-bottom: 8px;
}

.hero {
  position: relative;
   min-height: 100vh;
  padding: 60px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 450px;
  max-width: 90%;
}

.hero-text {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  
}
.hero-img {
  width: 450px;
  max-width: 90%;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: 'Miss Fajardose', cursive;
  font-size: 100px;
  color: #6b8e23;
  line-height: 0.9;
}

.arrow {
  position: absolute;
  right: 50%;
  top: 90%;
  font-size: 20px;
  text-decoration: none;
  color: black;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
  z-index: 2;
}

.arrow:hover {
  transform: translateX(8px);
}
.side-left,
.side-right {
  z-index: 1000;
}
.carousel {
  position: absolute;
  bottom: 80px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 40px;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.carousel img {
  height: 450px;
  width: auto;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.05);
}

/* Hide scrollbar (clean look) */
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel {
  scroll-snap-type: x mandatory;
}

.carousel img {
  scroll-snap-align: start;
}

.carousel-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  color: black;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.carousel-arrow.left {
  left: 30px;
}

.carousel-arrow.right {
  right: 30px;
}

.carousel-arrow:hover {
  opacity: 0.5;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.logo-text {
  font-family: 'Miss Fajardose', cursive;
  font-size: 28px;
  color: #6b8e23;
  margin-left: 18px;
  transform: translateY(4px);
}
body {
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}
#about-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

/* ACTIVE STATE */
#about-popup.active {
  display: block;
}

/* FLOATING BOX */
.about-content {
  position: absolute;
  top: 50%;
  left: 35%; /* 👈 this controls how far left */
  transform: translate(-50%, -50%) scale(0.95);
  
  background: #f5f5f5;
  padding: 40px;
  width: 90%;
  max-width: 400px;

  opacity: 0;
  transition: all 0.3s ease;
}

/* WHEN OPEN */
#about-popup.active .about-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about-content h2 {
  margin-top: 0;
  font-family: Helvetica, Arial, sans-serif;
}

.about-content p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}
@media (max-width: 768px) {
  .mobile-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  @media (max-width: 768px) {

  .hero {
    padding: 60px 0;
  }

}

  .hero-img {
    width: 80%;
  }
  @media (max-width: 768px) {

  .hero {
    padding-top: 120px;
  }

  .hero-text {
    position: static;
    transform: none;
    margin-top: -50px;
  }

 @media (max-width: 768px) {

  .hero-text h1 {
    font-size: 42px;
    line-height: 1;
  }

}
  }

  .arrow {
    position: static;
    margin-top: 10px;
     font-size: 18px;
  }

  .side-left,
  .side-right {
    display: none;
  }

}
@media (max-width: 768px) {

  .carousel {
    bottom: 100px;
    padding: 10px 20px;
  }

  .carousel img {
    height: 50vh;
  }

  .carousel-arrow {
    font-size: 20px;
  }

}@media (max-width: 768px) {

  .top-bar {
    padding: 20px;
  }

  .logo-text {
    font-size: 22px;
  }

}
@media (max-width: 768px) {

  .carousel-arrow {
    display: none;
  }

}
.mobile-links a {
  font-family: Helvetica, Arial, sans-serif;
}

@media (max-width: 768px) {

  .mobile-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .mobile-links a {
    text-decoration: none;
    color: black;
    font-size: 10px;
    opacity: 0.8;
  }

}
#about-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* MOBILE */
@media (max-width: 768px) {

  #about-popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-content {
    position: static;
    transform: none;

    width: 85%;
    max-width: 320px;

    padding: 25px 20px;
    border-radius: 12px;

    margin: 0 auto;
  }

}
@media (max-width: 768px) {

  #about-popup.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .about-content {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 85%;
    max-width: 320px;

    padding: 25px 20px;
    border-radius: 12px;
  }

}