/* --- COLOR VARIABLES --- */
:root {
  --primary-gold: #D4AF37;    /* The main metallic gold */
  --dark-gold: #996515;       /* For headings and better contrast */
  --light-gold-bg: #FCF9EE;   /* For section backgrounds */
  --overlay-gold: rgba(212, 175, 55, 0.85);
  --white: #ffffff;
  --text-dark: #333333;
}

/* --- GLOBAL & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text-dark); line-height: 1.6; background-color: #fdfdfd; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--dark-gold); }
.container { max-width: 1100px; margin: 0 auto; padding: 2rem 1rem; text-align: center; }

/* --- NAVIGATION & MOBILE MENU --- */
nav {
  display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem;
  background-color: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000;
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-gold); border: 2px solid var(--primary-gold); padding: 5px 10px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.menu-toggle span { width: 25px; height: 3px; background-color: var(--dark-gold); border-radius: 2px; }
.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-gold); }
.btn-book { background-color: var(--dark-gold); color: white !important; padding: 8px 15px; border-radius: 5px; }

/* --- HERO & GALLERY --- */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center; height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white;
}
.hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); margin-bottom: 0.5rem; color: var(--white); }
.tagline { font-size: 1.5rem; font-style: italic; color: #f0e68c; }
.cta-button { background-color: var(--primary-gold); color: #fff; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 30px; transition: 0.3s; margin-top: 20px; }
.cta-button:hover { background-color: var(--dark-gold); transform: translateY(-2px); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 2rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; height: 250px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.overlay { position: absolute; bottom: 0; background: var(--overlay-gold); color: white; width: 100%; padding: 10px; font-weight: bold; text-align: center; }

/* --- BOOKING FORM & BUTTONS --- */
.booking-section { background-color: var(--light-gold-bg); padding: 3rem 1rem; }
.booking-wrapper { background: var(--white); padding: 2rem; border-radius: 15px; max-width: 600px; margin: 0 auto; text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; }
input, select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.price-display { background-color: #fff; padding: 15px; border-radius: 5px; text-align: center; margin-bottom: 1.5rem; border: 1px solid var(--primary-gold); border-left: 8px solid var(--primary-gold); }
.payment-box { background-color: #fffdf9; border: 1px solid var(--primary-gold); border-radius: 8px; padding: 15px; margin-bottom: 1.5rem; }
.bank-details { font-family: monospace; background: #fff; padding: 10px; border-radius: 4px; border: 1px solid #eee; margin-top: 10px; }
.whatsapp-btn { flex: 2; padding: 15px; background-color: #25D366; color: white; border: none; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.clear-btn { flex: 1; padding: 15px; background-color: #f44336; color: white; border: none; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
  .nav-links.active { display: flex; }
}