
header {
  color: black;
  padding: 1rem 2rem;
  border-bottom: 4px solid #e4b35d;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    width 0.35s ease,
    box-shadow 0.35s ease;
}

header.is-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;              
  height: 30vh;
  padding: 0;
  overflow: hidden;

  background-color: white;
  border-right: 3px solid #e4b35d;
  box-shadow: none;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}

header.is-sidebar > * {
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
}

header.is-sidebar:hover {
  width: 12rem;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
  border-right-color: rgba(228, 179, 93, 0.8);
}

header.is-sidebar:hover > * {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0.2s;
}


header.is-sidebar .navbar {
  /* width: 100%; */
  padding: 2rem 1.5rem;
  flex-direction: column;
  align-items: flex-start;
}

header.is-sidebar .nav-links {
 flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

header.is-sidebar .logo {
  font-size: 1.2rem;
  padding-left:1rem ;
}

.navbar {
  position: relative;
  background-color: white;
  /* border-radius: 0 20px 20px 0; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.56rem 2rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 3px #e4b35d;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-bottom: 2px solid #e4b35d;
}


@media (max-width: 768px) {
  header.is-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    border-right: none;
  }

  header.is-sidebar > * {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  body.has-sidebar main {
    margin-left: 0;
  }
}
  html,body {
    scroll-snap-type: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column,
  .footer-about {
    flex: 1 1 100%;
  }


@media (max-width: 480px) {
  .navbar {
    /* width: 100%; */
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
  }

  .hero {
    padding-top: 8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}