/*
Theme Name: Jane Portfolio Theme
Theme URI: https://janesferrazza.com/
Author: Jane Sferrazza
Description: Custom portfolio theme for Jane Sferrazza with About, Portfolio, Drupal, and Resume page templates.
Version: 1.0.0
Text Domain: jane-portfolio-theme
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: #f5ede3;
  color: #1b1815;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0 0;
}

.site-header-inner,
.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(27, 24, 21, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 250, 243, 0.58);
  backdrop-filter: blur(16px);
}

.site-title {
  color: inherit;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a,
.footer-link {
  color: #b75a38;
  text-decoration: none;
  font-weight: 700;
}

.site-main {
  min-height: calc(100vh - 10rem);
}

.site-footer {
  padding: 0 0 2rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

@media (max-width: 640px) {
  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
