* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; }

header { background: #222; color: #fff; padding: 10px 20px; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a { color: #fff; text-decoration: none; }
.menu-toggle { display: none; cursor: pointer; font-size: 22px; }

.hero { background: #f4f4f4; text-align: center; padding: 60px 20px; }
.hero h1 { font-size: 2.5rem; }
.hero p { font-size: 1.2rem; color: #555; }

.about, .highlights, .gallery, .contact { padding: 40px 20px; max-width: 900px; margin: auto; }
.about p { margin-top: 10px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #f9f9f9; padding: 20px; border-radius: 8px; text-align: center; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-top: 20px; }
.gallery-grid img { width: 100%; border-radius: 6px; }

.contact form { display: flex; flex-direction: column; gap: 10px; }
.contact input, .contact textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
.contact button { background: #222; color: #fff; border: none; padding: 10px; cursor: pointer; }

footer { text-align: center; padding: 15px; background: #222; color: #fff; margin-top: 20px; }

@media(max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #333; position: absolute; top: 50px; right: 0; width: 200px; }
  .nav-links li { margin: 15px 0; text-align: center; }
  .menu-toggle { display: block; }
}
