body {
  margin: 0;
  font-family: sans-serif;
}

header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 15px 0;
  z-index: 1000;
  transition: 0.3s;
}

header.scrolled {
  background: black;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  height: 100vh;
  position: relative;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: relative;
  color: white;
  text-align: center;
  top: 40%;
}

.btn {
  background: red;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.spots {
  padding: 80px 10%;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.food {
  padding: 100px 10%;
  text-align: center;
}

.food-item img {
  width: 300px;
  border-radius: 10px;
}
.map-section {
  padding: 80px 20px;
  text-align: center;
  background: #f2f6f9;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.map-section p {
  margin-bottom: 30px;
  color: #555;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.map-section {
  padding: 80px 20px;
  text-align: center;
  background: #eef3f7;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.map-box {
  background: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-box h3 {
  margin-bottom: 10px;
}
