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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #1e1e1e;
  color: #ddd;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2b2b2b;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #444;
}

.navbar .logo {
  font-size: 1.5rem;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #1a1a1a;
}

.hero h2 {
  font-size: 2.5rem;
  color: #eee;
}

/* Gallery Section */
.gallery {
  padding: 3rem 2rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid img:hover {
  transform: scale(1.02);
}

/* About Section */
.about {
  padding: 3rem 2rem;
  background-color: #2c2c2c;
}

.about h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

.about p {
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  color: #777;
  font-size: 0.9rem;
}
