
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  body {
    color: #333;
    background: #fff;
  }
  
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-title.left {
    font-size: 2.2rem;
    top: 18%;
    left: 6%;
    right: auto;
    word-break: break-word;
    max-width: 90vw;
    z-index: 3;
  }
  @media (max-width: 600px) {
    .hero-title.left {
      font-size: 1.3rem;
      top: 12%;
      left: 4%;
      max-width: 80vw;
      line-height: 1.1;
    }
    .hero-content.center {
      padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    }
  }

  .hero-slide img,
  .stay-img,
  .schedule-card img,
  .gallery-images img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .info-columns,
  .stay,
  .gallery-images,
  .schedule-card,
  .price-box-new {
    width: 100%;
    box-sizing: border-box;
  }

  @media (max-width: 900px) {
    .info-columns,
    .stay,
    .gallery-images {
      width: 100%;
      margin: 0;
      padding: 0 4px;
      box-sizing: border-box;
    }
    .price-box-new {
      min-width: unset;
      width: 100%;
      box-sizing: border-box;
    }
    .schedule-card,
    .schedule-card-dark,
    .schedule-card-light {
      min-width: 0;
      width: 100%;
      box-sizing: border-box;
      margin: 0;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }
    .stay-img {
      width: 100% !important;
      max-width: 100vw;
    }
    .stay-info {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem 0 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  
  .logo {
    font-weight: 900;
    font-size: 1.5rem;
  }
  
  .navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .navbar-center ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .navbar-center li {
    cursor: pointer;
    font-weight: bold;
  }

  .navbar-right {
    flex: 1;
    display: flex;
    justify-content: right;
  }
  
  .navbar-right ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .navbar-right li {
    cursor: pointer;
    font-weight: bold;
  }
  
  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    gap: 5px;
  }
  .menu-icon span {
    display: block;
    width: 28px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  .hero {
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-carousel {
    position: relative;
    width: 100%;
    max-height: 800px;
    height: 60vw;
    min-height: 320px;
  }
  
  .hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
  }
  
  .hero-slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 800px;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.3em 0.7em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
  }
  
  .carousel-btn:hover {
    background: rgba(0,0,0,0.6);
  }
  
  .carousel-btn.prev { left: 20px; }
  .carousel-btn.next { right: 20px; }
  
  .carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .carousel-dots .dot.active {
    background: #a08d4c;
    border-color: #a08d4c;
  }
  
  .hero-title,
  .hero-title.center {
    position: static;
    top: unset;
    left: unset;
    transform: none;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    text-align: center;
    margin: 0;
  }
  .hero-title.top-right { top: 10%; right: 5%; left: auto; transform: none; font-size: 2rem; }
  .hero-title.top-left { top: 10%; left: 5%; right: auto; transform: none; font-size: 2rem; }
  .hero-location.bottom-left { bottom: 10%; left: 5%; right: auto; transform: none; font-size: 1.2rem; }
  .hero-location.bottom-right { bottom: 10%; right: 5%; left: auto; transform: none; font-size: 1.2rem; }
  .hero-location.center { top: 60%; left: 50%; transform: translate(-50%, 0); font-size: 1.3rem; }
  @media (max-width: 600px) {
    .hero-title.center, .hero-title.top-right, .hero-title.top-left, .hero-location.bottom-left, .hero-location.bottom-right, .hero-location.center {
      font-size: 1rem !important;
      padding: 0.3em 0.7em;
    }
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: #a08d4c;
    padding: 1.5rem 0;
    gap: 0;
  }
  
  .countdown div {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    position: relative;
  }
  
  .countdown div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 2px;
    background: #fff;
    opacity: 0.7;
  }
  
  .countdown span {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.2em;
  }
  
  .countdown small {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
  }
  
  .info {
    display: block;
    padding: 0 0 2rem 0;
    background: #fff;
  }
  
  .schedule {
    width: 100%;
  }
  
  .schedule-card {
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    border-radius: 40px 0 0 0;
    background: #444;
    margin-bottom: 0;
    min-height: 200px;
  }
  
  .schedule-card + .schedule-card {
    border-radius: 0 0 0 40px;
    background: #bbb;
    margin-top: 0;
  }
  
  .schedule-card img {
    width: 120px;
    height: auto;
    margin-right: 2rem;
    flex-shrink: 0;
  }
  
  .schedule-text {
    color: #fff;
    text-align: left;
  }
  
  .schedule-card + .schedule-card .schedule-text {
    color: #333;
  }
  
  .schedule-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  
  .schedule-date {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .pricing {
    flex: 1;
  }
  
  .card {
    display: flex;
    align-items: center;
    background: #eee;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
  
  .card img {
    width: 50px;
    margin-right: 1rem;
  }
  
  .price-box {
    background: #a08d4c;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
  }
  
  .gallery {
    padding: 2rem;
    text-align: center;
  }
  
  .gallery-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .gallery-images img {
    width: 30%;
    border-radius: 8px;
  }
  
  .stay {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: #f9f9f9;
    align-items: center;
  }

  .stay-info {
    padding-left: 100px;
    padding-right: 100px;
  }
  
  .stay-info h2 {
    color: #a08d4c;
    font-weight: 900;
    font-size: 80px;
  }
  
  .stay-info button {
    margin-top: 1rem;
    background: red;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
  }
  
  .stay-img {
    width: 50%;
    border-radius: 10px;
  }
  
  .sponsor {
    text-align: center;
    background: #eee;
    padding: 2rem;
  }
  
  .footer {
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    background: #fff;
    color: #a08d4c;
  }
  .footer-title {
    color: #a08d4c;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1.2rem;
  }
  .footer-contact {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
  }
  .footer-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  .footer-contact-text {
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .footer-copyright {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.7rem;
  }
  @media (max-width: 600px) {
    .footer-contacts {
      flex-direction: column;
      gap: 1.2rem;
    }
    .footer-title {
      font-size: 1.2rem;
    }
    .footer-contact {
      font-size: 1rem;
    }
    .footer-icon {
      width: 28px;
      height: 28px;
    }
  }
  
  /* Sidebar styles */
  .sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
  }
  .sidebar.active {
    right: 0;
  }
  .sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
  }
  .sidebar-header span {
    font-size: 2rem;
    cursor: pointer;
  }
  .sidebar ul {
    list-style: none;
    padding: 0 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .sidebar ul li {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
  }
  .sidebar ul li:hover {
    color: #a08d4c;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.2);
    z-index: 1000;
  }
  .sidebar-overlay.active {
    display: block;
  }

  @media (max-width: 900px) {
    .navbar-center ul {
      display: none;
    }
    .menu-icon {
      display: flex;
    }
  }

  .hero-content.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 600px;
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 18px;
    z-index: 20;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  }
  .cta-button {
    background: #ff2d2d;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
    letter-spacing: 1px;
  }
  .cta-button:hover {
    background: #c70000;
  }
  @media (max-width: 600px) {
    .hero-content.center { padding: 1rem 0.5rem 1rem 0.5rem; }
    .cta-button { font-size: 1rem; padding: 0.7rem 1.2rem; }
  }
  .hero-slide:first-child .hero-content.center {
    margin-top: 25px;
  }
  .hero-title.left {
    position: absolute;
    top: 18%;
    left: 6%;
    right: auto;
    font-size: 2.2rem;
    word-break: break-word;
    max-width: 90vw;
    z-index: 3;
    line-height: 1.1;
    padding-right: 2vw;
  }
  @media (max-width: 900px) {
    .hero-title.left {
      font-size: 1.1rem;
      top: 10%;
      left: 4%;
      max-width: 80vw;
      line-height: 1.12;
      padding-right: 2vw;
    }
  }
  @media (max-width: 600px) {
    .hero-title.left {
      font-size: 2.85rem;
      top: 37%;
      left: 3%;
      max-width: 75vw;
      line-height: 1.13;
      padding-right: 2vw;
      color :#4d4d4d;
    }
  }
  .info {
    background: #fff;
    padding: 0 0 2rem 0;
  }
  .info-columns {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1200px;
  }
  .schedule, .pricing {
    flex: 1 1 0;
  }
  .info-title {
    color: #a08d4c;
    font-weight: 900;
    font-size: 2.2rem;
    margin: 2rem 0 1.5rem 0;
    letter-spacing: 1px;
    text-align: left;
  }
  .schedule-card {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    min-height: 180px;
    margin-bottom: 0;
    border-radius: 40px 0 0 0;
    margin-top: 0;
  }
  .schedule-card-dark {
    background: #555;
    border-radius: 40px 0 0 0;
  }
  .schedule-card-light {
    background: #bbb;
    border-radius: 0 0 0 40px;
    margin-top: 0;
  }
  .schedule-card img {
    width: 120px;
    height: auto;
    margin-right: 2rem;
    flex-shrink: 0;
  }
  .schedule-text {
    color: #fff;
    text-align: left;
  }
  .schedule-card-light .schedule-text {
    color: #333;
  }
  .schedule-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .schedule-date {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 2rem;
  }
  .price-box-new {
    background: #a08d4c;
    color: #fff;
    border-radius: 0 40px 40px 0;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    min-width: 380px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .price-main {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
  }
  .price-detail {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
  }
  .price-detail-bold {
    font-weight: 700;
    font-style: normal;
  }
  .price-detail-normal {
    font-weight: 500;
    font-style: normal;
  }
  .price-detail-italic {
    font-style: italic;
    font-weight: 600;
  }
  @media (max-width: 900px) {
    .info-columns {
      flex-direction: column;
      gap: 2rem;
      align-items: stretch;
    }
    .pricing {
      margin-left: 0;
    }
    .price-box-new {
      min-width: unset;
      width: 100%;
      border-radius: 0 0 40px 40px;
    }
    .schedule-card, .schedule-card-dark, .schedule-card-light {
      border-radius: 40px 40px 0 0 !important;
    }
  }
  /* Gallery */
.gallery-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.gallery-images img {
  width: 30%;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .gallery-images img {
    width: 90px;
    height: 60px;
    border-radius: 10px;
  }
}

/* Stay With Us */
.stay {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: #f9f9f9;
  flex-direction: row;
  gap: 2rem;
}
.stay-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.stay-info h2 {
  color: #a08d4c;
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  margin: 2rem 0 1.5rem 0;
  line-height: 1;
  letter-spacing: 2px;
}
.stay-info button {
  margin-top: 2rem;
  background: #ff2d2d;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
}
.stay-img {
  width: 45%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .stay {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .stay-img {
    width: 90%;
    margin-top: 1rem;
  }
  .stay-info h2 {
    font-size: 2.2rem;
  }
}

/* Sponsor */
.sponsor {
  text-align: center;
  background: #eee;
  padding: 2rem 0.5rem;
}
.sponsor h3 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
}
.sponsor-slider {
  font-size: 1.1rem;
  color: #333;
}

/* Footer Kontak Kami */
.footer-title {
  color: #a08d4c;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}
.footer-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-contact-text {
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-copyright {
  color: #888;
  font-size: 0.95rem;
  margin-top: 0.7rem;
}



@media (max-width: 600px) {
  .footer-title {
    font-size: 1.2rem;
  }
  .footer-contact {
    font-size: 1rem;
  }
  .footer-icon {
    width: 28px;
    height: 28px;
  }
}
  @media (max-width: 600px) {
    .countdown span {
      font-size: 1.3rem;
    }
    .countdown small {
      font-size: 0.7rem;
    }
  }
  @media (max-width: 600px) {
    .info-title {
      text-align: center;
    }
  }