* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0c0c0c;
  color: white;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav h1 {
  color: gold;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #ddd;
  text-decoration: none;
}

nav a:hover {
  color: gold;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('images/hero-background.jpg') center/cover;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 60px;
  color: gold;
}

.hero p {
  margin-top: 20px;
  color: #ddd;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: gold;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 100px 60px;
  text-align: center;
}

.dark {
  background: #111;
}

h2 {
  color: gold;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
}

.gold {
  border: 2px solid gold;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}


.gallery img:hover {
  transform: scale(1.03);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .grid,
  .gallery {
    grid-template-columns: 1fr;
  }

}