@font-face {
  font-family: "Canva Sans";
  src: url("../../fonts/canvaSans.otf");
}

body{
    font-family: "Canva Sans", sans-serif;
    background-color: #BCB9B6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

#logo{
    position: fixed;
    top: 0;
    left: 0;
}

.navBar{
    position: fixed;
    top: 0;
    left: 0;
    transform: none;

    width: 100vw;
    height: 100px;
    z-index: 9998;

    display: flex;
    justify-content: center; /* center inner content */
    align-items: center;
    background: transparent;
    color: white;

    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navBar.scrolled{
  background: rgba(39, 30, 27, 0.85); /* dark brown from your palette */
  backdrop-filter: blur(6px);
}

.navInner{
    width: min(1100px, 92vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

#logo{
    height: 200px;
    width: auto;
}

.navButton {
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    font-size: clamp(12px, 1.1vw, 18px);
    letter-spacing: clamp(2px, 0.8vw, 8px);
    color: inherit;
    z-index: 9999;
}

h1{
    font-size: clamp(32px, 6vw, 110px);
    letter-spacing: clamp(1.5px, 0.9vw, 18px);
}

h2{
  font-size: clamp(28px, 4vw, 60px);
  letter-spacing: clamp(3px, 1vw, 15px);
}

h4{
  font-size: clamp(16px, 1.6vw, 25px);
  letter-spacing: clamp(1px, 0.4vw, 4px);
}

h5{
  font-size: clamp(12px, 1.2vw, 22px);
  letter-spacing: clamp(1px, 0.4vw, 6px);
}

@media (max-width: 600px){
  .navBar{
      height: 70px;
  }

}