body {
  margin: 0;
  background: #0a0a0a;
  color: #eee;
  font-family: 'Manrope', sans-serif;
}

/* NAV */
.nav {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.nav-inner {
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  border-radius: 60px;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(20px);
}

.logo {
  height: 30px;
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #d4af37;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.menu a:hover {
  color: #d4af37;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active {
  color: #fff;
}

.menu a.active::after {
  width: 100%;
}

/* SEZIONI */
.section {
  min-height: 100vh;
  padding: 120px 40px;
  text-align: center;
}

.dark {
  background: #111;
}

/* HERO */
.hero {
  background: url("https://picsum.photos/1600?grayscale") center/cover;
}

.hero-content {
  backdrop-filter: blur(4px);
  padding: 60px;
}

/* TITOLI */
h1, h2 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: 64px;
  color: #d4af37;
}

.subtitle {
  opacity: 0.7;
  margin-bottom: 30px;
}

.text {
  max-width: 600px;
  margin: auto;
  opacity: 0.8;
}

/* BOTTONI */
.btn-main {
  padding: 14px 35px;
  border: 1px solid #d4af37;
  color: #d4af37;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.btn-main:hover {
  background: #d4af37;
  color: black;
}

/* FILTRI */
.filters {
  margin-top: 30px;
}

.btn-filter {
  background: transparent;
  border: none;
  color: #777;
  margin: 0 10px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
}

.btn-filter::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #d4af37;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.btn-filter:hover {
  color: #d4af37;
}

.btn-filter:hover::after {
  width: 100%;
}

.btn-filter.active {
  color: #fff;
}

.btn-filter.active::after {
  width: 100%;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
  justify-content: center;
}

.card {
  display: none;
}

.card img {
  width: 300px;
  height: 420px;
  object-fit: cover;
  transition: 0.6s;
}

.card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.show {
  display: block;
}

/* ANIMAZIONI */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT LAYOUT */
.about-section {
  background: #0a0a0a;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
}

.about-image img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.about-text {
  text-align: left;
  max-width: 500px;
}

/* MOBILE */
@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

/* FOOTER */
.footer {
  background: #000;
  padding: 40px;
  text-align: center;
  color: #777;
  font-size: 14px;
}