* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  padding: 15px 35px;
  background: #606263;
  backdrop-filter: blur(50px);

  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.header-kiri {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  width: 130px;
  cursor: pointer;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.judul h1 {
  color: #d4af37;
  font-size: 30px;
  letter-spacing: 2px;
}

.judul p {
  color: #ddd;
  font-size: 14px;
  margin-top: 3px;
}

.header-kanan {
  text-align: right;
  line-height: 1.7;
  font-size: 13px;
}

.header-kanan a {
  color: white;
  text-decoration: none;
}

.header-kanan a:hover {
  color: #d4af37;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 38px;
  color: #d4af37;
  cursor: pointer;

  padding: 0;
  margin: 0;

  transform: none;
}

#menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 20px;

  width: 230px;
  background: rgba(0, 0, 0, 0.92);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  z-index: 99999;
}

#menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 14px;
  margin: 10px 0;
  border-radius: 8px;
  transition: 0.3s;
}

#menu a:hover {
  background: #d4af37;
  color: black;
}

.hero {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)),
    url('../image/lobi.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 80px;
  color: #d4af37;
  letter-spacing: 5px;
  text-shadow: 0 0 15px black;
}

.hero p {
  margin: 20px 0;
  font-size: 24px;
  color: #ddd;
  letter-spacing: 4px;
}

.check-btn {
  padding: 15px 28px;
  position: relative;
  top: 60px;

  background: transparent;
  backdrop-filter: blur(2px);

  border: 5px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;

  color: white;
  font-size: 16px;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s;

  transform: translateY(80px);
}

.check-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

section {
  padding: 120px 40px;
}

.account-tabs {
  text-align: center;
  margin: 25px 0;
}

.account-tabs span {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.account-tabs span:hover {
  color: white;
}

.divider {
  margin: 0 12px;
}

.account-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
    url('../image/account.jpg');

  background-size: cover;
  background-position: center;

  min-height: 100vh;
  padding: top 100px;
  ;
  display: flex;
  justify-content: center;
  align-items: center;
}

.account-container {
  width: 420px;
  margin: auto;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  padding: 40px;
  border-radius: 18px;
}

.phone-wrapper {
  width: 100%;
}

.iti {
  width: 100% !important;
  margin: 12px 0 !important;
  display: block !important;
}

.iti input[type="tel"] {
  width: 100% !important;
  margin: 0 !important;
  padding-left: 90px !important;
}

.iti__country-list {
  color: #111 !important;
  background: white !important;
}

.iti__country-list .iti__country:hover {
  background: #f0f0f0 !important;
}

.iti__selected-flag {
  background: transparent !important;
}

.iti__selected-dial-code {
  color: #111 !important;
}

.account-container h2 {
  text-align: center;
  color: #d4af37;
}

.account-container p {
  text-align: center;
  margin-top: 10px;
  color: #ddd;
}

.password-wrapper {
    position: relative;
    width: 100%;
}
.password-wrapper input {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #888;
    background: none;
    border: none;
    padding: 0;
}

.account-btn {
  width: 40%;
  padding: 15px;
  background: #d4af37;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form {
  margin-top: 25px;
}

input,
select {

  width: 100%;
  padding: 15px;
  margin: 12px 0;
  border: none;
  border-radius: 10px;
  background: white;
}

section {
  padding: 120px 40px;
}

.accommodation-bg {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.accommodation-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.1);
  animation: bgSlide 10s infinite;
  z-index: -2;
}

.accommodation-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;

  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

@keyframes bgSlide {

  0% {
    background-image: url('../image/lorong kamar.jpg');
  }

  25% {
    background-image: url('../image/deluxe room 1.jpg');
  }

  50% {
    background-image: url('../image/family room 1.jpg');
  }

  75% {
    background-image: url('../image/presidential 1.jpg');
  }

  100% {
    background-image: url('../image/lorong kamar.jpg');
  }
}

.accommodation-bg h2 {
  font-size: 55px;
  letter-spacing: 4px;
}

.submenu {
  display: flex;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.submenu a {
  background: #d4af37;
  color: black;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: bold;
}

#facility,
#room-type {
  scroll-margin-top: 100vh;
}

#roomtype {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url('../image/lorong kamar.jpg');

  min-height: 100vh;
  background-size: cover;
  background-position: center 30%;
  padding-bottom: 80px;
}

#roomtype h2 {
  text-align: center;
  color: #d4af37 !important;
  margin-bottom: 40px;
  padding-top: 80px;
  font-size: 45px;
}

.room-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 250px;
}

.room-list a {
  text-decoration: none;
  background: #d4af37;
  color: black;
  padding: 18px 25px;
  border-radius: 10px;
  font-weight: bold;
}

.room-list a:hover {
  background: #b38f1d;
  color: white;
}

.room-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  max-width: 800px;

  margin: 80px auto 20px auto;
  text-align: left;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 1;
}

.room-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.room-details {
  padding: 20px;
  font-size: 1.7rem;
  color: #d4af37;
}

.room-price {
  font-size: 1.4rem;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 15px;
}

.room-price span {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: normal;
}

.room-facilities h3 {
  font-size: 0.95rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.room-facilities ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: auto auto; 
  gap: 8px 40px;
  max-width: 400px;
}

.room-facilities li {
  font-size: 0.85rem;
  color: #ffffff;
  position: relative;
  padding-left: 12px;
}

.room-facilities li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.room-details .btn-book {
  display: block;
  text-align: center;
  background: #1a1a1a;
  color: #d4af37;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.room-details .btn-book:hover {
  background-color: #d4af37;
  color: black;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

#deluxe {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)),
    url('../image/deluxe room 1.jpg');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#family {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)),
    url("../image/family room 1.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#presidential {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)),
    url("../image/presidential 3.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.room-section h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.room-section h3 {
  margin-top: 25px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 25px 0;
}

.slider img {
  width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.slider img:hover {
  transform: scale(1.03);
}

#facility {
  padding: 70px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#facility h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 30px;
}

#facility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../image/ballroom 1.jpg') center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.1);
  z-index: -1;
}

#facility::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.modal-controls button {
  font-size: 35px !important;
  padding: 15px 25px !important;

  background-color: transparent;
  color: wheat;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-controls button:hover {
  transform: scale(1.1);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;

  color: white;
  font-size: 45px;
  cursor: pointer;
}

section {
  padding: 140px 40px 80px 40px;
}

.booking-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)),
    url('../image/city view.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.booking-container {
  width: 300px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-container h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 10px;
}

.booking-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-container input,
.booking-container select {
  width: 100%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #222;
  outline: none;
}

.booking-container label {
  font-size: 14px;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: -6px;
}

/* ===== ADD-ON BOOKING ===== */
.addon-section {
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 12px;
}

.addon-section h3 {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.addon-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  color: white;
  font-size: 13px;
}

.addon-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.addon-item label {
  color: white;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

.pax-control {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  margin-left: 26px;
}

.pax-control.show {
  display: flex;
}

.pax-control button {
  width: 26px;
  height: 26px;
  background: #d4af37;
  color: black;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.pax-control span {
  color: white;
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.extra-bed-options {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
  margin-left: 26px;
}

.extra-bed-options.show {
  display: flex;
}

.extra-bed-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  cursor: pointer;
}

.extra-bed-options input[type="radio"] {
  width: 14px;
  height: 14px;
  margin: 0;
  flex-shrink: 0;
}

.suites-link {
  color: #d4af37;
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin-top: 3px;
  margin-left: 26px;
}

.total-box {
  margin-top: 15px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  text-align: center;
}

.total-box p {
  color: #aaa;
  font-size: 12px;
  margin: 0 0 4px 0;
  text-align: center;
}

.total-box h3 {
  color: #d4af37;
  font-size: 18px;
  margin: 0;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  border-radius: 16px;
  padding: 35px;
  max-width: 420px;
  width: 90%;
  color: white;
  position: relative;
}

.popup-box h3 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: 1px;
}

.popup-box .popup-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 12px;
  margin-bottom: 20px;
}

.popup-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.popup-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #ddd;
  padding-left: 20px;
  position: relative;
}

.popup-box ul li::before {
  content: "✦";
  color: #d4af37;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 9px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.popup-price {
  text-align: center;
  color: #d4af37;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
}

.book-btn {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  color: black;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
}

.book-btn:hover {
  background: #bfa030;
}

footer {
  background: black;
  color: #999;
  text-align: center;
  padding: 20px;
}

footer {
  background: black;
  color: #999;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 8px;
  }

  .header-kanan {
    text-align: left;
    font-size: 11px;
  }

  .judul h1 {
    font-size: 20px;
  }

  .judul p {
    font-size: 11px;
  }

  .logo {
    width: 90px;
  }

  #menu {
    top: 160px;
    left: 10px;
    width: 200px;
  }

  .hero h2 {
    font-size: 42px;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .check-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {

  header {
    padding: 10px 15px;
  }

  .header-kiri {
    gap: 10px;
  }

  .header-kanan {
    display: none;
  }

  .judul h1 {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .judul p {
    font-size: 10px;
  }

  .logo {
    width: 70px;
  }

  .menu-btn {
    font-size: 28px;
  }

  #menu {
    top: 120px;
    width: 180px;
  }

  .hero h2 {
    font-size: 28px;
    letter-spacing: 2px;
    padding: 0 20px;
  }

  .hero p {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 20px;
  }

  .check-btn {
    font-size: 13px;
    padding: 10px 18px;
    transform: translateY(40px);
  }
}