* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: black;
  color: white;
  overflow-x: hidden;
}

/* GRID BACKGROUND */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00ffff;
}

/* ABOUT SECTION */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 10%;
  gap: 50px;
}

.about-image img {
  width: 300px;
  border-radius: 15px;
  image-rendering: pixelated;
}

.about-text {
  max-width: 600px;
}

/* GALLERY */
.gallery {
  padding: 100px 10%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  image-rendering: pixelated;
}

/* CONTACT */
.contact {
  padding: 100px 10%;
}