:root {
  --navy: #1E2430;
  --navy-strong: #141926;
  --off-white: #FAFAF8;
  --cream: #F3F1EC;
  --slate: #9AA4B5;
  --mustard: #D8C07A;
  --headline-font: "Brandon Grotesque", ui-sans-serif, system-ui;
  --body-font: "Questrial", ui-sans-serif, system-ui;
}

body {
  font-family: var(--body-font);
  background-color: var(--off-white);
  color: var(--navy);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: var(--headline-font);
  font-weight: 500;
  letter-spacing: -0.025em;
}

p {
  color: rgba(30, 36, 48, 0.7);
}

/* Custom Components (re-implemented from Tailwind layers) */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background-color: var(--navy);
  color: var(--off-white);
  font-family: var(--body-font);
  font-weight: 500;
  transition: all 0.3s duration;
  box-shadow: 0 12px 30px rgba(30, 36, 48, 0.08);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--navy-strong);
  transform: translateY(-0.25rem);
  box-shadow: 0 24px 60px rgba(30, 36, 48, 0.14);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--body-font);
  font-weight: 500;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background-color: var(--mustard);
  color: var(--navy);
  font-family: var(--body-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  box-shadow: 0 12px 30px rgba(30, 36, 48, 0.08);
  text-decoration: none;
}

.btn-accent:hover {
  background-color: white;
  transform: translateY(-0.25rem);
  box-shadow: 0 24px 60px rgba(30, 36, 48, 0.14);
}

.card-premium {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 36, 48, 0.05);
  box-shadow: 0 12px 30px rgba(30, 36, 48, 0.08);
  transition: all 0.5s;
}

.card-premium:hover {
  box-shadow: 0 24px 60px rgba(30, 36, 48, 0.14);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease-out;
}

[data-animate].visible {
  opacity: 100;
  transform: translateY(0);
}

/* Overlays */
.honeycomb-overlay {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpolygon points='30,2 58,16 58,36 30,50 2,36 2,16' fill='black'/%3E%3C/svg%3E");
  mask-repeat: repeat;
}

/* Custom Header / Logo Container */
.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contrast enhancement for yellow text on light backgrounds */
.text-contrast-mustard {
    text-shadow: 0.5px 0.5px 0px rgba(0, 0, 0, 0.2), -0.5px -0.5px 0px rgba(0, 0, 0, 0.05);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
