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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --dark3: #0f3460;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-book-btn {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600 !important;
}

.nav-book-btn:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; max-width: 750px; }

.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.95rem;
}

.hero-contact-item .icon {
  width: 38px; height: 38px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTION COMMON ── */
section { padding: 90px 60px; }

.section-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── ABOUT ── */
#about { background: var(--gray); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-box .placeholder-img {
  font-size: 6rem;
  opacity: 0.4;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.about-badge span { display: block; font-size: 1.8rem; font-weight: 800; }

.about-text .section-title,
.about-text .section-label { text-align: left; }

.about-text .section-divider { margin: 0 0 20px; }

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-card .num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-card .lbl { font-size: 0.8rem; color: #888; margin-top: 4px; }

/* ── FACILITIES ── */
#facilities { background: var(--white); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.facility-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.facility-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.15);
  background: var(--white);
}

.facility-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.facility-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.facility-card p { color: #777; font-size: 0.9rem; line-height: 1.7; }

/* ── EVENTS ── */
#events { background: var(--dark); }

#events .section-title { color: var(--white); }
#events .section-desc { color: #aaa; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: default;
  transition: all 0.3s;
}

.event-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.event-card .emoji { font-size: 2.8rem; margin-bottom: 14px; }
.event-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; }

/* ── GALLERY ── */
#gallery { background: var(--gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  background: #1a1a2e;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item:nth-child(1) { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

/* ── LOCATION ── */
#location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 24px; }

.location-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--gray);
  padding: 24px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
}

.location-card .icon-box {
  width: 48px; height: 48px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-card h4 { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.location-card p { color: #444; line-height: 1.6; font-size: 0.95rem; }
.location-card a { color: var(--gold); text-decoration: none; }

.map-box {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #aaa;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.map-box .map-icon { font-size: 3rem; }
.map-box p { font-size: 0.9rem; }
.map-box a {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 70px 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { font-size: 1.5rem; font-weight: 800; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { color: #888; line-height: 1.8; font-size: 0.9rem; max-width: 260px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}
.social-btn:hover { background: var(--gold); }

.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; position: relative; }
.footer-col h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--gold); margin-top: 8px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #888; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item .ic { font-size: 1rem; margin-top: 2px; }
.footer-contact-item p { color: #888; font-size: 0.88rem; line-height: 1.6; }
.footer-contact-item a { color: #888; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: #666; font-size: 0.85rem; }
.footer-bottom span { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  .about-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  footer { padding: 50px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-contact { flex-direction: column; align-items: center; gap: 16px; }
}
