/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  background-color: #201f24;
  color: #eee;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
  --spacing-1x: 8px;
  /* 8 * 1 */
  --spacing-2x: 16px;
  /* 8 * 2 */
  --spacing-3x: 24px;
  /* 8 * 3 */
  --spacing-4x: 32px;
  /* 8 * 4 */
  --spacing-5x: 40px;
  /* 8 * 5 */
  --spacing-6x: 48px;
  /* 8 * 6 */
  --spacing-7x: 56px;
  /* 8 * 7 */
  --spacing-8x: 64px;
  /* 8 * 8 */
  --spacing-9x: 72px;
  /* 8 * 9 */
  --spacing-10x: 80px;
  /* 8 * 10 */
  --font-family-primary: 'Alegreya', serif;
  --font-family-secondary: 'Nunito', sans-serif;
  --color-white: white;
  --color-base-btn: #f78fb3;
  --color-hover-btn: #e884a7;
  --color-logo: #fff;
  --color-btn-border: #3f3f3f;
  --color-btn-hover-bg: #272337;
  --color-btn-hover-border: #9280eb;
  --color-btn-hover-text: #9280eb;
  --color-footer-text: rgba(128, 110, 147, 1);
  --color-footer-link: rgba(176, 146, 207, 1);
  --btn-padding: var(--spacing-4x) var(--spacing-1x);
  --btn-radius: 50px;
  --btn-transition: 0.3s ease;
  --outline-color: #f78fb3;
  --btn-default-bg: var(--color-base-btn);
  --btn-default-color: var(--color-white);
  --btn-hover-bg: var(--color-hover-btn);
  --btn-hover-color: var(--color-white); }

*, *:before, *:after {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-primary); }

body {
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  color: #d7d6dc; }

html {
  height: fill-available;
  height: -webkit-fill-available; }

:is(h1, h2, h3, .btn, .menu-btn, .logo, .nav-links) {
  font-family: var(--font-family-secondary);
  font-weight: 900;
  color: var(--color-white); }

h1 {
  font-size: calc(4em + 1vw);
  line-height: calc(1em + 1vw);
  margin-bottom: calc(0.5em + 1vw); }

h2 {
  font-size: calc(2.5em + 1vw);
  line-height: calc(1em + 1vw);
  margin-bottom: calc(0.5em + 0.8vw); }

h3 {
  font-size: calc(1.3em + 1vw);
  line-height: calc(1em + 1vw);
  margin-bottom: calc(0.5em + 0.6vw); }

@media (max-width: 768px) {
  h1 {
    font-size: calc(1.9em + 1vw);
    line-height: calc(1.2em + 1vw);
    margin-bottom: calc(0.5em + 1vw); }
  h2 {
    font-size: calc(1.4em + 1vw);
    line-height: calc(1.2em + 1vw);
    margin-bottom: calc(0.5em + 0.8vw); }
  h3 {
    font-size: calc(1em + 1vw);
    line-height: calc(1.2em + 1vw);
    margin-bottom: calc(0.5em + 0.6vw); } }

p {
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin: 10px 0 30px;
  max-width: 38rem;
  font-weight: 200; }
  p small {
    opacity: 0.5; }
  p.text-centered {
    text-align: center;
    max-width: none; }

a {
  color: inherit; }
  a:hover {
    text-decoration: underline; }

.btn {
  display: inline-block;
  padding: var(--spacing-1x) var(--spacing-4x);
  font-weight: 900;
  border-radius: var(--btn-radius);
  transition: background-color var(--btn-transition), color var(--btn-transition), border-color var(--btn-transition);
  text-decoration: none;
  color: var(--btn-default-color); }
  .btn.default {
    background-color: var(--btn-default-bg); }
    .btn.default:hover {
      background-color: var(--btn-hover-bg);
      color: var(--btn-hover-color);
      text-decoration: none; }
  .btn.outline {
    background-color: transparent;
    color: var(--outline-color);
    border: 2px solid var(--outline-color); }
    .btn.outline:hover {
      background-color: var(--btn-default-bg);
      color: var(--btn-default-color);
      border-color: var(--btn-hover-bg); }
  .btn.large.btn.large, .btn.large .btn.small, .btn.small.btn.large, .btn.small .btn.small {
    padding: var(--spacing-1x) var(--spacing-2x); }
  .btn.outline.large.secret {
    opacity: 0;
    transition: opacity var(--btn-transition) ease-in-out;
    visibility: hidden;
    pointer-events: none; }
    .btn.outline.large.secret.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto; }

.masthead {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: 100vh;
  padding: 0 10%;
  position: relative;
  z-index: 1; }
  .masthead .img-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0; }
    .masthead .img-container img {
      display: none; }
    .masthead .img-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(33, 8, 68, 0.529), rgba(22, 14, 30, 0.9));
      z-index: 1; }
    .masthead .img-container.midnight::before {
      background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(16, 19, 46, 0.9), rgba(22, 14, 30, 0.9)); }
    .masthead .img-container.morning::before {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(80, 94, 138, 0.71), rgba(22, 14, 30, 0.9)); }
    .masthead .img-container.afternoon::before {
      background: linear-gradient(rgba(83, 120, 183, 0.074), rgba(19, 57, 88, 0.652), rgba(22, 14, 30, 0.9)); }
    .masthead .img-container.evening::before {
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(16, 19, 46, 0.75), rgba(22, 14, 30, 0.9)); }
    .masthead .img-container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("../img/lasso-painting.jpg") center/cover;
      opacity: 0.7;
      z-index: 0; }
  @media (max-width: 768px) {
    .masthead {
      padding: 0 var(--spacing-4x);
      height: auto;
      min-height: auto;
      justify-content: start; }
      .masthead .img-container {
        position: relative;
        background: none;
        height: auto;
        margin-bottom: var(--spacing-4x);
        margin-left: calc(-1 * var(--spacing-4x));
        margin-right: calc(-1 * var(--spacing-4x));
        width: calc(100% + var(--spacing-4x) * 2);
        z-index: -1;
        opacity: 1;
        top: 0;
        left: 0;
        overflow: hidden; }
        .masthead .img-container img {
          position: relative;
          display: block;
          width: 150%;
          left: -25%;
          height: auto;
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
        .masthead .img-container::after, .masthead .img-container::before {
          display: none; } }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  width: 100%;
  z-index: 2; }
  nav.fixed {
    position: absolute;
    top: 0;
    left: 0; }
  nav .logo {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none; }
    nav .logo:hover {
      text-decoration: none !important; }
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0; }
    nav ul li {
      margin-left: 32px;
      font-weight: bold; }
    nav ul a {
      text-decoration: none; }
  nav .menu-btn {
    display: none; }
  nav .nav-links {
    display: flex; }
  @media (max-width: 768px) {
    nav {
      position: relative !important; }
      nav .menu-btn {
        display: flex;
        z-index: 4;
        padding: 4px 16px;
        background-color: transparent;
        border: 1px solid #3f3f3f;
        border-radius: 16px;
        color: #898989;
        font-size: 1rem;
        font-weight: bold; }
        nav .menu-btn:hover {
          background-color: #272337;
          border-color: #9280eb;
          color: #9280eb; }
      nav .logo {
        z-index: 4; }
      nav ul li a {
        font-size: .85rem; }
      nav .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: 96px 32px 32px;
        background-color: rgba(32, 31, 36, 0.9);
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 2; }
        nav .nav-links ul {
          width: 100%;
          flex-direction: column-reverse;
          order: -1; }
          nav .nav-links ul li {
            margin: 0 0 32px 0;
            text-align: right;
            width: 100%; }
            nav .nav-links ul li a {
              font-size: 1.2rem; } }

.content {
  max-width: 1680px;
  /* Set max width */
  margin: auto;
  /* Center the content */ }
  .content .header-wrapper {
    position: relative;
    padding: 15rem 8rem;
    text-align: center;
    background-image: linear-gradient(rgba(32, 31, 36, 0.25), rgba(32, 31, 36, 0.25)), url("../img/paintstroke2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
    .content .header-wrapper.ps-two {
      background-image: linear-gradient(rgba(32, 31, 36, 0.25), rgba(32, 31, 36, 0.25)), url("../img/paintstroke.png"); }
    .content .header-wrapper p {
      max-width: none; }
    @media (max-width: 768px) {
      .content .header-wrapper {
        background-size: cover;
        padding: 8rem 0; }
        .content .header-wrapper h1 {
          padding: 0 32px; } }
  .content .column-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px; }
    @media (max-width: 767px) {
      .content .column-wrapper {
        flex-direction: column; } }
  .content .column {
    flex: 1;
    padding: 32px; }
    .content .column img {
      width: 100%;
      height: auto;
      filter: grayscale(1);
      border-radius: 3rem; }
      .content .column img:hover {
        filter: grayscale(0); }
    @media (max-width: 767px) {
      .content .column {
        width: 100%; } }

footer {
  color: #806e93;
  padding: 32px; }
  footer.positioned {
    position: absolute;
    bottom: 10px;
    z-index: 2; }
  footer p {
    padding: 0;
    margin: 0; }
  footer a {
    color: #b092cf; }
    footer a:hover {
      text-decoration: none; }
  @media (max-width: 768px) {
    footer {
      position: relative !important;
      bottom: auto;
      left: auto; } }

@keyframes fadeInDesktop {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeInMobile {
  from {
    opacity: 0; }
  to {
    opacity: 1.0; } }

.masthead .img-container {
  animation: fadeInDesktop 1s ease-out forwards;
  opacity: 0; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.masthead h1 {
  animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 333ms forwards;
  opacity: 0; }

.masthead p:first-of-type {
  animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 666ms forwards;
  opacity: 0; }

.masthead p:nth-of-type(2) {
  animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
  opacity: 0; }

.masthead p:nth-of-type(3) {
  animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
  opacity: 0; }

.masthead p:last-of-type {
  animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s forwards;
  opacity: 0; }

@media (max-width: 768px) {
  .masthead .img-container {
    animation: fadeInUp 500ms ease-out forwards; } }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")"; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }
