@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
  --brand-burgundy: #4A0E0E;
  --brand-burgundy-dark: #2D0909;
  --brand-gold: #D4AF37;
  --brand-champagne: #E6D5B8;
  --brand-cream: #FDFCF0;
  --brand-charcoal: #2C2C2C;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--brand-charcoal);
  background-color: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.section-overline {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  display: block;
}

@media (min-width: 768px) {
  .section-overline {
    font-size: 12px;
  }
}

.nav-link {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .nav-link {
    font-size: 12px;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: all 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.book-button {
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-align: center;
}

.textured-text {
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  -webkit-background-clip: text;
  background-clip: text;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
