/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Layout */
body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

/* Navigation */
header {
  background: #111;
  padding: 20px;
  border-bottom: 2px solid #222;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s;
}

nav a:hover {
  color: #00c3ff;
}

/* Hero */
.hero {
  background: url('assets/hero.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  background: rgba(0,0,0,0.6);
  padding: 20px 40px;
  border-radius: 10px;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00c3ff;
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #222;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #222;
}
