:root {
    /* Coffee‑inspired palette */
    --foam:   #f7f3ef;
    --white:   #fffdfa;
    --latte:  #d3b8ae;
    --bean:   #6f4e37;
    --espresso:#3b2f2f;
    --cream:  #fff9f2;
    --accent: #c48e5c;
    --text:   #3b2f2f;
    --bg:     #faf5ef;
    --radius: 0.75rem;
    --gap:    1rem;
    --transition: 0.3s ease;
    --font-size-body:max(16px,calc(.6vw + .6vh));
    --font-size-body-smaller:max(15px,calc(.55vw + .55vh));
    --font-size-small:max(13px,calc(.45vw + .45vh));
    --font-size-tiny:max(11px,calc(.4vw + .4vh));
    --font-size-h1:max(24px,calc(1.2vw + 1.2vh));
    --font-size-h2:max(20px,calc(1vw + 1vh));
    --font-size-h3:max(18px,calc(.8vw + .8vh));
    --font-size-h4:max(17px,calc(.7vw + .7vh));
    --font-size-h5:max(16.5px,calc(.65vw + .65vh));
}

  @font-face {
    font-family: 'quicksand';
    src: url('../assets/fonts/Quicksand-VariableFont_wght.ttf');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'poppins';
    src: url('../assets/fonts/Poppins-Black.ttf');
    font-display: swap;
  }
  

html {
  height:100vh;
  width: 100vw;
  overflow-x: hidden;
  -ms-touch-action: none; 
    -ms-overflow-style: none;
    -ms-scroll-chaining: none;
}
::-webkit-scrollbar{
    display:none;
}

body {
    width:100vw;
    height:100vh;
    clear: both;
    background: var(--bg);
    color: var(--text);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-family: 'quicksand', 'sanf serif';;
    font-weight: normal!important;
    color:rgb(20,20,20);
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    left:0;
    top:0;
    margin:0;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior:contain;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    /*font-size:1rem;*/
    font-size:var(--font-size-body);
    scrollbar-width:none;

}
body :is(div, h1, h2, h3, h4){
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Site Header & Nav */
.site-header {
  background: var(--espresso);
  color: #fff;
}
.site-container {
  width: max(900px, 90vw);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8vh;
}
.site-nav{
    background: var(--accent);
    padding: 0 2vw;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    height: 7vh;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.site-nav a {
  margin:0 0.65rem;
  color: #f7f3ef;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: var(--font-size-h2);
  white-space: nowrap;

  &.active{
    font-size: max(19px,calc(.97vw + .97vh));
    color: #333;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.site-nav a:hover {
  color: var(--latte);
  &:active {
    color: var(--espresso);
    }
}

a {
    text-decoration: none;
    color: inherit;
}


@media only screen and (min-width: 900px) {
  body {
    scrollbar-width: auto;
  }
}
