:root {
  --linen: hsl(40, 30%, 92%);
  --sand: hsl(38, 35%, 82%);
  --sun: hsl(45, 65%, 70%);
  --sea: hsl(155, 30%, 70%);
  --ocean: hsl(200, 35%, 72%);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--linen);
  color: #444;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: var(--sand);
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-item {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.dropdown a {
  display: block;
  padding: .5rem 1rem;
  font-weight: normal;
}

.nav-item:hover .dropdown {
  display: block;
}

/* HERO */
.hero {
  background: linear-gradient(var(--sun), var(--linen));
  padding: 4rem 2rem;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

/* BUTTONS */
button {
  background: var(--ocean);
  border: none;
  padding: .75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* FORMS */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

input, textarea, select {
  padding: .6rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* FOOTER */
footer {
  background: var(--sand);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}
