:root {
  --gold: #d4af37;
  --dark: #0b0b0b;
  --green: #1f5f2e;
  --light: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--dark);
  color: white;
}
h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: 0.3s;
  background: black;
}
nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover {
  color: var(--gold);
}
.nav-btn {
  background: var(--gold);
  color: black;
  padding: 8px 18px;
  border-radius: 30px;
}
.nav-btn:hover {
  transform: scale(1.05);
  color: #ccc;
}
.logo img {
  height: 80px;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1f3d1f;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url("assets/flyinggrass.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.9)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.hero p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #ddd;
}
.btn {
  background: var(--gold);
  color: black;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 100px 8%;
  text-align: center;
}
.section.dark {
  background: #111;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--gold);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 20px 0 10px;
}
.card p {
  padding: 0 20px 30px;
  color: #ccc;
}
.card:hover {
  transform: translateY(-10px);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input,
form select,
form textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
}
form button {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--gold);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
form button:hover {
  transform: scale(1.05);
}

footer {
  background: #000;
  padding: 30px;
  text-align: center;
  color: #777;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav ul {
    display: none;
  }
}
/* =========================
   GALLERY SECTION
========================= */

.gallery {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  padding: 120px 8%;
  text-align: center;
}

.gallery h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
  letter-spacing: 2px;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* Subtle fade-in animation */
.gallery-grid img {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.gallery-grid img:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-grid img:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-grid img:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-grid img:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    gap: 20px;
  }

  .gallery-grid img {
    height: 200px;
  }
}
