/* Global */
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Quicksand', sans-serif; }

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%; height: 64px;
  background: #ffffff; border-bottom: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; z-index: 1000;
  flex-wrap: wrap; /* wrap for mobile */
}
.nav-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.logo img { height: 50px; cursor: pointer; }
.nav-links { display: flex; gap: 16px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: #374151; cursor: pointer; }
.nav-links a:hover { color: #2563eb; }

/* Tabs */
.tab { display: none; margin-top: 64px; padding: 20px; }
.tab.active { display: block; }

/* Hero */
.hero { position: relative; }
.hero img { width: 100%; height: auto; object-fit: cover; max-height: 500px; }
.hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; text-align: center; }
.hero-text h1 { font-size: 48px; margin-bottom: 12px; }
.hero-text p { font-size: 20px; }

/* Map */
.map-section { padding: 40px 20px; text-align: center; }
.map-section iframe { width: 100%; max-width: 900px; height: 400px; border-radius: 15px; border: none; }
.map-section p { font-size: 16px; color: #374151; margin-top: 8px; }

/* Booking */
.booking-container { max-width: 900px; margin: 0 auto; text-align: center; padding: 20px; }
.booking-qr { max-width: 300px; width: 100%; border-radius: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.booking-steps { text-align: left; margin-top: 30px; }
.booking-steps h2 { font-size: 24px; margin: 20px 0 10px; }
.booking-steps ol { padding-left: 20px; }
.booking-steps li { margin-bottom: 8px; font-size: 16px; }

/* Photos */
.photo-group { text-align: center; margin: 30px 0; }
.photo-group h1 { font-size: 28px; margin-bottom: 20px; }
.photo-group img { width: auto; max-width: 90%; margin: 10px; border-radius: 12px; }

/* Footer */
.footer { background: #f3f4f6; padding: 20px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-left h3, .footer-center h4, .footer-right h4 { margin: 0 0 8px 0; }
.footer-center ul { list-style: none; padding: 0; }
.footer-center ul li { margin-bottom: 5px; }
.footer-center ul li a { text-decoration: none; color: #374151; cursor: pointer; }
.footer-center ul li a:hover { color: #2563eb; }
.footer-bottom { text-align: center; margin-top: 20px; padding-top: 12px; border-top: 1px solid #d1d5db; font-size: 14px; color: #6b7280; }

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 16px; }
  .nav-links a { font-size: 14px; }
  .booking-steps h2 { font-size: 20px; }
  .booking-steps li { font-size: 14px; }
  .photo-group h1 { font-size: 22px; }
}
