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

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.5);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

.hero-text {
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 20px;
}

/* GALLERY */
.gallery {
  padding: 80px 50px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* ABOUT & CONTACT */
.about, .contact {
  padding: 80px 50px;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
}
