@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans&display=swap');

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

body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(to bottom, #001f3f, #004f7c);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header and Logo */
header {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 10px 30px; 
  background: #ffffff; /* White header */
  position: sticky; 
  top: 0; 
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-container { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }

nav { display: flex; gap: 20px; }
nav a { color: #000000; text-decoration: none; font-weight: 500; transition: color 0.3s; }
nav a:hover, nav a.active { color: #ffd700; }

.menu-toggle { font-size: 1.8em; cursor: pointer; display: none; color: #000000; }

@media (max-width: 768px) {
  nav { 
    position: absolute; 
    top: 70px; 
    right: 0; 
    background: #ffffff; 
    flex-direction: column; 
    width: 200px; 
    text-align: right; 
    padding: 10px 20px; 
    display: none; 
  }
  nav.show { display: flex; }
  .menu-toggle { display: block; }
  nav a { color: #000000; }
  nav a:hover, nav a.active { color: #ffd700; }
}

/* Hero Section */
.hero { flex: 1; text-align: center; padding: 80px 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3em; margin-bottom: 15px; color: white; }
.hero p { font-size: 1.2em; margin-bottom: 30px; color: white; }
.btn {
  background: #ffd700; color: black; padding: 12px 30px; border-radius: 30px;
  text-decoration: none; font-weight: bold; transition: background 0.3s;
}
.btn:hover { background: #ffcd00; }

.content { flex: 1; padding: 40px 20px; max-width: 800px; margin: auto; text-align: center; color: white; }

/* Nearby Attractions Section */
.nearby { padding: 50px 20px; text-align: center; }
.nearby h2 { font-family: 'Playfair Display', serif; font-size: 2.2em; margin-bottom: 30px; color: white; }

.attractions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.attraction { width: 200px; background: rgba(0,0,0,0.2); border-radius: 10px; padding: 10px; transition: transform 0.3s; }
.attraction img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; }
.attraction p { margin-top: 8px; font-weight: 500; color: white; }
.attraction:hover { transform: scale(1.05); }

/* Location Section */
.location {
  padding: 50px 20px;
  text-align: center;
}
.location h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: white;
}
.map-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Footer */
footer { text-align: center; padding: 20px; background: rgba(0,0,0,0.1); color: white; }
