/* --- Global Reset & Base Layout --- */

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #0a0a0a;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}

/* Main page flow – NO flex on body so scrolling is normal */
body {
  min-height: 100vh;
  overflow-y: auto;
}

/* Center content on the page */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Navbar --- */

.navbar {
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a96e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c9a96e;
}

/* --- Generic Sections --- */

section {
  padding: 140px 0 80px; /* top padding accounts for fixed navbar */
  width: 100%;
}

.pricing-section {
  padding-top: 160px !important; /* extra space on pricing page */
}

/* --- Hero (extra global tweaks; main visuals are inline in index.html) --- */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- Buttons --- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a96e;
  color: #000;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  transform: scale(1.05);
}

/* --- Cards / Pricing --- */

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.card,
.budget-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.card:hover,
.budget-card:hover {
  border-color: #c9a96e;
  transform: translateY(-8px);
}

.card.featured {
  border-color: #c9a96e;
  background: #222;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #c9a96e;
  margin: 20px 0;
}

/* --- Footer --- */

.footer {
  background: #000;
  padding: 80px 0 40px;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

/* --- Gallery (Showroom) --- */

.gallery-section {
  padding: 140px 20px 100px;
  background: #000;
  text-align: center;
}

.gallery-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  color: #c9a96e;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

/* --- About Page --- */

.about-section {
  padding: 140px 0 100px;
  text-align: center;
}

.about-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #c9a96e;
  margin-bottom: 30px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* --- Booking / iframe centering --- */

.booking-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.booking-wrapper iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}

/* --- Mobile-specific fixes --- */

@media (max-width: 860px) {
  /* Always allow scroll on mobile, even if JS tried to lock it */
  body {
    overflow-y: auto !important;
    position: relative !important;
  }

  .navbar {
    padding: 0.75rem 1.25rem;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  section,
  .gallery-section,
  .about-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .price-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
