* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* ───── BACK BUTTON ───── */
.project-back-button {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

.project-back-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* ───── HEADER ───── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #f5af19, #f12711);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.navbar ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5af19, #f12711);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar ul li a:hover {
  color: #fff;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* ───── HERO / CONTENT ───── */
.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.content > * {
  position: relative;
  z-index: 1;
}

/* Glass card */
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#placeTitle {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

#placeDescription {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

/* ───── DROPDOWN ───── */
#placeSelector {
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  outline: none;
  min-width: 260px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  transition: all 0.3s ease;
  font-family: inherit;
}

#placeSelector:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

#placeSelector:focus {
  border-color: #f5af19;
  box-shadow: 0 0 0 3px rgba(245, 175, 25, 0.2);
}

#placeSelector option {
  background: #1a1a2e;
  color: #fff;
}

/* ───── BUTTON ───── */
.booking {
  margin-top: 20px;
  padding: 14px 36px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5af19, #f12711);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(241, 39, 17, 0.3);
  font-family: inherit;
}

.booking:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(241, 39, 17, 0.45);
}

.booking:active {
  transform: translateY(0) scale(0.97);
}

/* ───── FOOTER ───── */
footer {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 40px 32px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

footer h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #f5af19, #f12711);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ───── RESPONSIVE ───── */
@media screen and (max-width: 768px) {
  header {
    padding: 0 16px;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .navbar ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar ul li a {
    font-size: 0.85rem;
  }

  .hero-card {
    padding: 32px 24px;
  }

  #placeTitle {
    font-size: 2rem;
  }

  #placeDescription {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  #placeSelector {
    min-width: 100%;
    width: 100%;
  }

  .booking {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  footer {
    padding: 40px 24px 24px;
  }
}

@media screen and (max-width: 480px) {
  .hero-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  #placeTitle {
    font-size: 1.6rem;
  }

  .navbar .logo {
    font-size: 1.2rem;
  }
}