/*
 * Global overrides for the Beach House Shake page
 * Ensures the page body and layout match the reference design
 */

/* Push content below fixed nav */
.beach-page > main {
  padding-top: 0;
}

.beach-page {
  overflow-x: hidden;
}

/* Ensure hero sits correctly under fixed nav */
.hero-beach {
  /* Nav is approx 80px tall */
  padding-top: 0;
}

/* Material Symbols global config for this theme */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  font-size: inherit;
  line-height: 1;
}

/* Selection color */
::selection {
  background-color: rgba(120, 90, 26, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-surface-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-brand-primary);
}
