:root {
  --font-eb-garamond: 'EB Garamond', serif;
  --font-inter: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #080808;
  color: #F8F5EC;
  font-family: var(--font-inter), sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.wp-singular {
  background-color: white;
  color: #080808;
  font-family: var(--font-inter), sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.gold-border-focus {
  border-color: rgba(212, 175, 55, 0.4);
}

.text-shadow-gold {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.glass-card {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(12px);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background-color: rgba(212, 175, 55, 0.4);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

::selection {
  background-color: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}

.admin-bar nav {
  top: 32px;
}

body.wp-singular nav {
  background-color: #080808;
}