 /* Brand font */
 .brand {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
}

/* Mobile brand font */
@media (max-width: 768px) {
  .brand {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

/* Michroma font for nav menu with smaller font & letter spacing */
nav a {
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* Top row links: About/Contact */
.top-links a {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero background styling */
.hero-bg {
  background-image: url('/images/lifestyle/lifestyle.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay */
/* .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
} */

.hero-content {
  position: relative;
  z-index: 1;
}

/* Mobile menu toggle */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Hamburger menu icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
}