/* ns-hugo-imp:/media/tiago/ti2/projects/centro-cultura-ile-odara/themes/site-centro-cultura-ile-odara-theme/assets/css/components/header.css */
.site-header {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 1rem clamp(1rem, 4vw, 3rem);
}
.site-brand {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.site-brand__eyebrow {
  color: var(--color-accent-yellow);
  font-family: sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-brand__name {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  margin-top: 0.25rem;
}
.site-menu summary {
  color: var(--color-white);
  cursor: pointer;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  padding: 0.6rem 0;
  text-transform: uppercase;
}
.site-menu summary::-webkit-details-marker {
  display: none;
}
.site-menu summary::after {
  color: var(--color-accent-yellow);
  content: " +";
}
.site-menu[open] summary::after {
  content: " -";
}
.site-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
}
.site-menu a {
  color: var(--color-white);
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.active {
  color: var(--color-accent-yellow);
}
.site-menu--desktop {
  display: none;
}
@media (min-width: 48rem) {
  .site-menu--mobile {
    display: none;
  }
  .site-menu--desktop {
    display: block;
  }
  .site-menu--desktop ul {
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }
  .site-menu--desktop a {
    display: inline-block;
    padding: 0.65rem 0;
    position: relative;
  }
  .site-menu--desktop a::after {
    background: var(--color-accent-yellow);
    bottom: 0.3rem;
    content: "";
    height: 0.15rem;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
    width: 100%;
  }
  .site-menu--desktop a:hover::after,
  .site-menu--desktop a:focus-visible::after,
  .site-menu--desktop a.active::after {
    transform: scaleX(1);
  }
}

/* ns-hugo-imp:/media/tiago/ti2/projects/centro-cultura-ile-odara/themes/site-centro-cultura-ile-odara-theme/assets/css/components/footer.css */
.site-footer {
  align-items: center;
  display: flex;
  font-family: sans-serif;
  font-size: 0.75rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  text-transform: uppercase;
}
.site-footer p {
  margin: 0;
}

/* ns-hugo-imp:/media/tiago/ti2/projects/centro-cultura-ile-odara/themes/site-centro-cultura-ile-odara-theme/assets/css/components/lyrics.css */
:root {
  --color-dark-charcoal: #282c2e;
  --color-action-red: #d83a26;
  --color-brand-olive: #6a8038;
  --color-accent-yellow: #e1ad21;
  --color-neutral-gray: #93979a;
  --lyrics-surface: rgba(255, 255, 255, 0.96);
  --lyrics-reading-width: 42rem;
}
.lyrics-page {
  background-color: var(--color-dark-charcoal);
  background-image: linear-gradient(rgba(40, 44, 46, 0.72), rgba(40, 44, 46, 0.72)), url("/css/background_v2-HKVW4J4P.png");
  background-position: center;
  background-size: cover;
  color: var(--color-dark-charcoal);
  margin: 0;
  max-width: none;
  min-height: 100vh;
  padding: 1rem;
}
.lyrics-page main {
  margin: 0 auto;
  max-width: var(--lyrics-reading-width);
}
.lyrics-sheet {
  background: var(--lyrics-surface);
  border-top: 0.35rem solid var(--color-action-red);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
  padding: clamp(1.25rem, 5vw, 3rem);
}
.lyrics-sheet h1 {
  color: var(--color-dark-charcoal);
  font-size: clamp(1.75rem, 8vw, 3rem);
  line-height: 1.05;
  margin: 0 0 0.5rem;
}
.lyrics-sheet time {
  color: var(--color-neutral-gray);
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.lyrics-sheet .verse-block {
  border-left: 0.2rem solid var(--color-brand-olive);
  margin: 0 0 1.5rem;
  padding-left: 1rem;
}
.lyrics-sheet p {
  color: var(--color-dark-charcoal);
  margin: 0 0 0.75rem;
}
.lyrics-sheet a {
  color: var(--color-action-red);
}
@media print {
  .lyrics-page {
    background: #fff;
    color: #000;
    min-height: auto;
    padding: 0;
  }
  .lyrics-page header,
  .lyrics-page footer,
  .lyrics-page nav {
    display: none;
  }
  .lyrics-sheet {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .lyrics-sheet h1 {
    font-size: 1.8rem;
  }
  .lyrics-sheet .verse-block {
    break-inside: avoid;
  }
  .lyrics-sheet a {
    color: #000;
  }
}

/* <stdin> */
:root {
  --color-dark-charcoal: #282c2e;
  --color-action-red: #d83a26;
  --color-brand-olive: #6a8038;
  --color-accent-yellow: #e1ad21;
  --color-neutral-gray: #93979a;
  --color-paper: #f3efe7;
  --color-white: #fff;
  --content-width: 72rem;
  --reading-width: 48rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--color-paper);
  color: var(--color-dark-charcoal);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  line-height: 1.5;
  margin: 0;
}
.site-page > header {
  background: var(--color-dark-charcoal);
  border-bottom: 0.25rem solid var(--color-action-red);
  color: var(--color-white);
}
.site-page > main {
  margin: 0 auto;
  max-width: var(--content-width);
  min-height: 60vh;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}
.site-page > footer {
  background: var(--color-dark-charcoal);
  color: var(--color-white);
  margin-top: 3rem;
}
.section-header {
  margin: 0 auto 3rem;
  max-width: var(--reading-width);
}
.section-kicker {
  color: var(--color-brand-olive);
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-hero {
  border-bottom: 0.15rem solid var(--color-accent-yellow);
  margin: 0 auto 4rem;
  max-width: var(--content-width);
  padding: clamp(2rem, 7vw, 5rem) 0 clamp(2.5rem, 8vw, 6rem);
}
.home-hero h1 {
  color: var(--color-dark-charcoal);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  max-width: 12ch;
  margin: 0.5rem 0 1.5rem;
}
.home-hero__lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 38rem;
}
.home-hero__action {
  background: var(--color-action-red);
  color: var(--color-white);
  display: inline-block;
  font-family: sans-serif;
  font-weight: 700;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
}
.home-hero__action:hover,
.home-hero__action:focus-visible {
  background: var(--color-brand-olive);
}
.home-content {
  margin: 0 auto;
  max-width: var(--reading-width);
}
.home-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}
.home-paths {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.home-path {
  align-items: start;
  background: var(--color-white);
  border-left: 0.35rem solid var(--color-brand-olive);
  color: var(--color-dark-charcoal);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2.5rem 1fr;
  padding: 1.25rem;
  text-decoration: none;
}
.home-path:hover,
.home-path:focus-visible {
  border-left-color: var(--color-action-red);
}
.home-path__number {
  color: var(--color-action-red);
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}
.home-path strong,
.home-path small {
  display: block;
}
.home-path small {
  color: var(--color-neutral-gray);
  margin-top: 0.35rem;
}
.about-contact {
  border-top: 0.2rem solid var(--color-accent-yellow);
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.lyrics-list {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--reading-width);
}
.lyrics-list-item {
  background: var(--color-white);
  border-left: 0.35rem solid var(--color-action-red);
  padding: 1.25rem;
}
.lyrics-list-item h2 {
  margin: 0;
}
.lyrics-list-item h2 a {
  color: var(--color-dark-charcoal);
}
.lyrics-preview {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}
.lyrics-list-link {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}
a {
  color: var(--color-action-red);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}
.skip-link {
  background: var(--color-accent-yellow);
  color: var(--color-dark-charcoal);
  left: 1rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}
.skip-link:focus {
  top: 1rem;
}
h1,
h2,
h3 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  line-height: 1.1;
}
img {
  height: auto;
  max-width: 100%;
}
@media print {
  .site-page > main {
    min-height: auto;
    padding: 0;
  }
}
/*# sourceMappingURL=main.css.map */
