:root {
  --bg: #0e0e0e;
  --fg: #f4f4f4;
  --muted: #b5b5b5;
  --accent: #5da9e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url("images/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
}


.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
}

.scroll-hint {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* INTRO */
.intro {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

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

.gallery img:hover {
  transform: scale(1.03);
}

/* CTA */
.cta {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* SPECIES */
.species {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  border-top: 1px solid #222;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}


@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
