* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

body {
  font-family: Georgia, "Times New Roman", serif;

  background: #16324f;
}


/* Whole website */

.site {
  width: 100%;
  height: 100dvh;

  display: flex;
  flex-direction: column;

  position: relative;
}


/* HEADER */

.header {
  height: 76px;

  flex-shrink: 0;

  display: flex;
  align-items: center;

  padding: 0 28px;

  background: #16324f;

  position: relative;

  z-index: 100;
}

.logo {
  color: white;

  text-decoration: none;

  font-size: 25px;
  font-weight: bold;

  letter-spacing: -1px;

  white-space: nowrap;
}


/* Desktop navigation */

.desktop-nav {
  margin-left: auto;

  display: flex;

  gap: 34px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.desktop-nav a:hover {
  text-decoration: underline;
}


/* Mobile hamburger */

.menu-button {
  display: none;

  margin-left: auto;

  border: none;

  background: none;

  color: white;

  font-size: 25px;

  cursor: pointer;
}


/* SLIDESHOW */

.slideshow {
  flex: 1;

  min-height: 0;

  position: relative;

  overflow: hidden;

  background: #16324f;
}

.slide {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform: scale(1);

  transition:
    opacity 1.4s ease,
    transform 7s ease;
}

.slide.active {
  opacity: 1;

  transform: scale(1.025);
}


/* FOOTER */

.footer {
  min-height: 64px;

  flex-shrink: 0;

  background: #16324f;

  display: flex;
  align-items: center;

  padding: 8px 24px;

  position: relative;

  z-index: 100;
}

.socials {
  display: flex;
  align-items: center;

  gap: 18px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 25px;
  height: 25px;

  object-fit: contain;

  display: block;

  filter: brightness(0) invert(1);

  transition: transform 0.2s ease;
}

.socials img.spotify-logo {
  width: 30px;
  height: 30px;
}

.socials img.bandcamp-logo {
  width: 60px;
  height: 28px;
}

.socials img.apple-logo {
  width: 48px;
  height: 28px;
}

.socials img:hover {
  transform: scale(1.12);
}

.footer p {
  margin-left: auto;

  color: white;

  font-family: Arial, sans-serif;

  font-size: 11px;
}


/* MOBILE MENU */

.mobile-menu {
  display: none;

  position: absolute;

  top: 76px;
  left: 0;

  width: 100%;

  padding: 35px 25px;

  background: #16324f;

  z-index: 200;

  flex-direction: column;

  gap: 28px;
}

.mobile-menu a {
  color: white;

  text-decoration: none;

  font-size: 25px;
}

.mobile-menu.open {
  display: flex;
}


/* PHONES */

@media (max-width: 700px) {

  .header {
    height: 72px;

    padding: 0 20px;
  }

  .logo {
    font-size: 21px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    top: 72px;
  }


  .footer {
    min-height: 58px;

    padding: 7px 15px;
  }

  .socials {
    gap: 14px;
  }

  .socials img {
    width: 22px;
    height: 22px;
  }

  .footer p {
    display: none;
  }


  .slide {
    object-position: center;
  }

  .slide[src="images/frank_alex_3.JPG"],
  .slide[src="images/kali_frank.jpg"] {
    object-position: 10% center;
  }

}