@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500&display=swap');

:root {
  --gold: #d4af37;
  --dark: #0d0d0d;
  --light: #f8f6f1;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1617034182568-08c7f004d7c1?auto=format&fit=crop&w=1500&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.divider {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.coming-soon {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 25px;
  border-radius: 4px;
}

.cta a {
  text-decoration: none;
  color: #000;
  background: var(--gold);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.cta a:hover {
  background: #c9a227;
}

/* SECTIONS */
section {
  padding: 70px 20px;
  text-align: center;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.about p {
  max-width: 750px;
  margin: auto;
  color: #ddd;
}

/* LOCATIONS */
.location-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #151515;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 25px;
  width: 280px;
  border-radius: 8px;
}

.card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info {
  margin-top: 25px;
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #080808;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.6rem;
  }
}
