/* Shared Styles */

.hero-section {
  display: flex;
  min-height: 90vh;
  flex-direction: column;
  gap: 1.5rem;
  /* gap-6 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /* p-4 */
  text-align: center;
}

/* Mobile responsive height if needed, matching md:min-h-[480px] */
@media (min-width: 768px) {
  .hero-section {
    min-height: 480px;
    /* md:min-h-[480px] - wait, the previous code had min-h-[90vh] AND md:min-h-[480px]? 
                          Actually 90vh is usually larger. Let's stick to 90vh as the primary requested height. 
                          The user specifically asked for 90vh. */
    min-height: 90vh;
  }
}

.gold-gradient-text {
  font-family: 'Smythe', serif;
  background: linear-gradient(to bottom, #ffffff, #ffbd59);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Mobile Menu Styles */
#mobile-menu {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#mobile-menu .menu-content {
  transform: translateY(20px);
  transition: transform 0.4s ease-out;
}

#mobile-menu.open .menu-content {
  transform: translateY(0);
}