html {
  scroll-behavior: smooth;
}

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

/* =========================
   BODY + CENTER LAYOUT
========================= */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #0f0f0f;
  color: white;

  display: flex;
  justify-content: center;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1200px;
}

/* =========================
   HEADER
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #000;
  border-bottom: 2px solid gold;
}

header h1 {
  color: gold;
}

h1, h2 {
  letter-spacing: 1px;
}

p {
  line-height: 1.6;
  opacity: 0.9;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

nav a:hover {
  color: gold;
}

/* =========================
   HERO
========================= */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1");
  background-size: cover;
  background-position: center;
}

.hero h2 {
  font-size: 48px;
  color: gold;
}

.hero p {
  margin: 10px 0 20px;
}

/* =========================
   BUTTON
========================= */
button {
  padding: 12px 25px;
  background-color: gold;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: white;
}

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

/* =========================
   LISTEN
========================= */
ul {
  list-style: none;
}

ul li {
  padding: 10px 0;
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* =========================
   MAP
========================= */
#map iframe {
  border-radius: 10px;
  margin-top: 15px;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  border-top: 1px solid gold;
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border: 2px solid gold;
  border-radius: 10px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: gold;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 32px;
  }

  section {
    padding: 30px 15px;
  }
}