* {
  font-family: 'Cormorant Garamond';
}

.mobile-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1rem;
}

@media (max-width: 768px) {
  .mobile-header.show {
    background: #000000e3;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 30px!important;
  }
}

.logo img {
  height: 50px;
}

.burger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: gold;
  cursor: pointer;
  z-index: 1001;
}

.burger:hover {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: gold;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #000000e3;
  display: none;
  opacity: 0;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  transition-property: display opacity;
  transition-duration: 1s;
  transition-behavior: allow-discrete;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    gap: 1.5rem;
    height: auto!important;
    padding: 0;
    opacity: 1;
  }
}

.nav-links a {
  color: white;
  padding: 0.5rem 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  border-bottom: 1px solid #272A31;
  transition: all .2s linear;
}

.nav-links a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  transition: all .2s linear;
}

.nav-links .active {
  color: #FFD700;
  font-weight: 500;
  border-bottom: 2px solid #FFD700;
}

@media (min-width: 768px) {
  .nav-links a {
    border-bottom: none;
  }
}

.nav-links.show {
  display: flex;
  padding: 2em;
  text-align: center;
  opacity: 1;

  @starting-style {
    opacity: 0;
  }
}

.page-footer {
  margin-top: 5em;
  margin-bottom: 3em;
}

.footer-horizontal {
  border-top: 2px solid #FFD700;
}

.footer-item-title {
  color: white;
  font-weight: bold;
  text-align: start;
  letter-spacing: 0.2em;
}

.footer-item-info {
  color: white;
  text-align: start;
}

@media (max-width: 768px) {
  .footer-image {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .mobile-footer-items {
    align-items: center;
  }
}

