/*------------------------------- PAGE PRELOADER ----------------------------------------*/

/* .loader_bg{
    position: fixed;
    z-index: 999999;
    background: rgb(234, 224, 212);
    width: 100%;
    height: 100%;
}
.loader{
    border: 0 soild transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
}
@keyframes loader{

}

@keyframes gkpFade{
  from { opacity: 0.15; transform: scale(.98); }
  to   { opacity: 1;    transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .loader:before { animation: none; opacity: 1; transform: none; } 
} */

/*-----------------------------------------------------------------------*/


body {
    background-size: 600% 600%;
    background: rgb(234, 224, 212);
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ------------------------ TEXT STYLES ------------------------------ */

@font-face {
    font-family: 'AlteHaasGroteskBold';
    src: url('fonts/AlteHaasGroteskBold.ttf'),
         url('fonts/AlteHaasGroteskRegular.ttf');
}

.home-title {
    font-family: 'AlteHaasGroteskBold', sans-serif;
    font-size: clamp(8rem, 10vw, 12rem);
    line-height: 0.8; /* keep spacing proportional to font-size */
    color: rgb(114, 120, 84);
    position: absolute; /* positioned relative to .hero */
    left: 0;
    bottom: 1.5vh; /* sit near the bottom of the hero section */
    width: 100%;
    padding: 0 0rem; /* allow wrapping on small viewports */
}

/* hero container so the title scrolls with the page */
.hero {
  min-height: 100vh;
  position: relative;
}

@media (max-width: 900px) {
  .home-title {
    font-size: clamp(6rem, 8vw, 8rem);
    line-height: 0.8;
    bottom: 1.5vh;
  }
}

@media (max-width: 480px) {
  .home-title {
    font-size: clamp(4rem, 6vw, 6rem);
    line-height: 0.8;
    bottom: 1.5vh;
  }
}

.sub-heading {
  background-color: transparent;
  font-size: 3.5vw;
  color: rgb(247, 155, 105);
  line-height: 1;
  padding: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7.5%;
}

.navbar-line, hr {
  position: fixed;
  left: 1.6%;               /* same margins you used before */
  right: 1.6%;              /* anchors both sides so it fills the viewport width */
  top: 2vh;                /* move it down as needed */
  border: 0;
  border-top: 3px solid rgb(114, 120, 84);
  z-index: 20;              /* ensure it's on top of other positioned content */
  margin: 0;
  mix-blend-mode: multiply;
}

.splitting-bar, hr {
  position: absolute;
  left: 1.6%;               /* same margins you used before */
  right: 1.6%;              /* anchors both sides so it fills the viewport width */
  top: 134vh;                /* move it down as needed */
  border: 0;
  border-top: 3px solid rgb(114, 120, 84);
  z-index: 20;              /* ensure it's on top of other positioned content */
  margin: 0;
  mix-blend-mode: multiply;
}

/* ------------------------------------------------------------------------ */

/* ---------------------- IMAGE GRID (flexbox) ---------------------------- */

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  align-items: stretch;
}

.grid-item {
  flex: 1 1 calc(50% - 1rem); /* three columns by default */
  min-width: 160px;
  height: 300px;
  display: flex;
  justify-content: center;
  padding: 2rem;
  color: rgb(114, 120, 84);
  font-family: 'AlteHaasGroteskBold';
  font-size: clamp(1.5rem, 2vw, 3rem);
}

@media (max-width: 900px) {
  .grid-item {
    font-size: clamp(1.35rem, 2.5vw, 3rem);
  }
}
@media (max-width: 700px) {
  .grid-item {
    font-size: clamp(1.01rem, 2.9vw, 2.6rem);
  }
}

@media (max-width: 480px) {
  .grid-item {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
  }
}


.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fill */
  display: block;
} 
.grid-item figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.grid-item figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .grid-item { flex: 1 1 calc(50% - 1rem); }
}

@media (max-width: 480px) {
  .grid-item { flex: 1 1 100%; }
}

/* ----------------------------------------------------------------------------- */

/* ----------------------NAVIGATION BAR STYLES------------------------------ */
.nav-items a, .nav-items2 a, .nav-items3 a  {
  font-family: 'AlteHaasGroteskBold', sans-serif;
  text-decoration: none;
  font-size: 17px;
  color: rgb(114, 120, 84);
  transition: color 0.5s ease; /* smooth color transition */
  display: inline-block;
  padding-top: 0.8rem;
}

a:hover {
  color: rgb(191, 196, 172);
}


/* Make the navigation list horizontal */
.nav-items ul {
  list-style: none; /* remove bullets */
  display: flex; /* horizontal layout */
  justify-content: flex-end; /* align to the right of the container */
  align-items: center;
}

/* Make the nav bar fixed so it stays visible when scrolling */
.nav-items, .nav-items2, .nav-items3 {
  position: fixed;
  top: 2%;
  left: 0%;       
  right: 0%;    
  background-color: transparent;
  padding: 0rem 0.5rem; /* breathing room for links */
  mix-blend-mode: multiply;
  margin: 0;

}

.nav-items3 {
  pointer-events: none;
  justify-content: center;
  text-align: center;
}

.nav-items3 a {
  pointer-events: auto;
}

.nav-items2 {
  pointer-events: none;
  padding-left: 1.6%;
}

.nav-items2, ul {
  list-style: none;
}
.nav-items2 a {
  pointer-events: auto; 
}

.nav-items {
  padding-right: 1.6%;
}







/* ------------------------------------------------------------------------ */