* {
  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;
}

.account-container .iti {
  width: 100%;
}

.account-container h2 {
  text-align: center;
  color: #d4af37;
}

.account-container p {
  text-align: center;
  margin-top: 10px;
  color: #ddd;
}

.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: 15vh;
}

#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: 50px;
}

#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;
}

.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: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  max-width: 800px;

  margin: 80px auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 1;
}

.room-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-details {
  padding: 20px;
}

.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;
}

.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;
}