body {
  margin: 0;
  background: #000;
  color: #fff;
}

/* Header */
header {
  background: #000;
  padding: 10px 20px;
}

.pencil-note {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #FFD700; /* gold tone */
  font-weight: 700; /* bold for clarity */
  letter-spacing: 0.05em; /* subtle spacing */
}

/* Hero section */
.hero {
  display: flex;
  min-height: 80vh;
  background: #000;
}

.hero-wrap {
  display: flex;
  flex: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw;
}

.hero-headline {
  font-family: "Great Vibes", cursive, "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
}

.hero-headline .headline-top {
  display: block;
  font-size: 0.5em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
}

.hero-headline .headline-bottom {
  display: block;
  font-family: "Satisfy", cursive;
  font-size: clamp(56px, 10vw, 70px);
  font-weight: normal;
  color: #fff;
}

.hero-copy {
  margin-top: 1rem;
  font-size: 1rem;
  color: #fff;
}

.hero-banner {
  flex: 1;
  position: relative;
}

/* Optional background ellipse (unused unless .palette div is added) */
.palette {
  position: absolute;
  inset: 0;
  background: url('/images/arch-image.jpg') center/cover no-repeat;
  clip-path: ellipse(58% 42% at 50% 50%);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .palette {
    clip-path: ellipse(58% 42% at 50% 50%);
  }
}

/* Compass link in header */
header .nav .compass {
  font-size: 1.5rem;
  color: #FFD700; /* gold */
  text-decoration: none;
  font-weight: bold;
  margin-left: 1rem;
  transition: color 0.3s ease;
  position: relative; /* needed for tooltip */
}

header .nav .compass:hover {
  color: #FFA500; /* orange-gold on hover */
}

header .nav .compass:hover::after {
  content: "Visit The ClubHeadArt Collection";
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  color: #FFD700;
  white-space: nowrap;
  margin-top: 0.25rem;
}

.palette-image {
  width: 100%;
  height: auto;
  clip-path: url(#paletteClip);
  -webkit-clip-path: url(#paletteClip); /* Safari support */
}
