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



body{
  font-family: 'Mona Sans';
  background: #FAF8F3;
  color: black;
  min-height: 100vh;
  overflow-x: hidden;
}


header{
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 45px;
  background: transparent;
}

.headerlogo{
  width: 6%;
  
  
}

.headertext{
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-decoration: none;
}

.headertext:hover{
   text-decoration: underline; 
  }

  .headertextabout{
    font-family: 'Mona Sans';
    font-size: 1.3rem;
    font-weight: 600;
    color: #6B3F9A;
    
    text-decoration: none;
  }
  
  .headertextabout:hover{
     text-decoration: underline; 
    }
    



/* HOMEPAGE CODE HERE */

.headervideo{
  position: relative;
  width: 100%;
  height: 900px;
  background: #1a2e2e;
  overflow: hidden;
}

.headervideo video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* FILTER STYLING */

.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 100px 40px;
  align-items: center;
}

.filterbutton{
  background: white;
  border: 2px solid #DAB9FE;
  color: #6B3F9A;
  border-radius: 15px;
  padding: 8px 22px;
  font-family: 'Mona Sans';
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  
}

.filterbutton:hover{
  background: #DAB9FE;
  color: #6B3F9A;
}

.filterbutton.active{
  background: #6B3F9A;
  color: white;
  border-color: #6B3F9A;
}

/* PROJECT CARDS */

.projects{
  padding: 16px 100px 48px;
  width: 100%;
  
}

.projectgrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}



.projectcard{
  text-decoration: none;
  color: black;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}

.projectcard:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(123,94,167,0.18);
}

.projectcard.hidden{
   display: none; 
}



.projectthumbnail{
  width: 100%;
  aspect-ratio: 4/3;
}

.projectinfo{
  padding: 14px 16px;
}

.projecttitle{
  font-family: 'Mona Sans';
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.projectcategory{
  font-size: 0.83rem;
  color: rgb(129, 129, 129);
}



footer{
  padding: 32px 100px 48px;
  display: flex;
  justify-content: space-between;
  
}





.contact h2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  color: #6B3F9A;

}

.contacticonsdiv{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
  

}

.contacticons{
  width: 70%;
}

.footerlogo {
  width: 11%;
}


.footerback{
  font-family: 'Mona Sans';
  font-size: 2.3rem;
  font-weight: 600;
  color: #6B3F9A;
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  
  text-decoration: none;
}

.footerback:hover{
   text-decoration: underline; 
  }


/* ABOUT PAGE  */


 
.aboutpage{
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 32px 80px; 
}
 

.introsection{
  display: flex;
  align-items: flex-start;
  gap: 75px;
  margin-bottom: 80px;
}
 

.aboutphotos{
  position: relative;
  width: 220px;
  /* min-width: 220px;
  height: 240px; */
}
 

.photoback{
  position: absolute;
  right: 40px;
  width: 180px;
  height: 180px;
  border-radius: 22px;
  background-image: url('../assets/spencersmolik_picture2.jpg');
  background-size: cover;
  background-position: center;
}
 
.photofront{
  position: absolute;
  top: 55px;
  left: 60px;
  width: 170px;
  height: 175px;
  border-radius: 22px;
  background-image: url('../assets/spencersmolik_picture1.jpg');
  background-size: cover;
  background-position: center;
  
}
 

.aboutcard{
  flex: 1;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
 
.cardheader{
  background: #6B3F9A;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}
 
.cardbody{
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: black;
}
 

.sectioncard{
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 50px;
}
 
.section-card .card-header{
  border-radius: 18px 18px 0 0;
}

.cardbody img{
  width: 10%;
  padding: 10px;
  margin: 10px;
}

/* KABUCH PROJECT PAGE */

.cardheaderkabuch{
  background: #009e80;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}

.sectioncardkabuch{
  width: 60%;
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 15px;
  margin-top: 150px;
}
 
.section-cardkabuch .card-header{
  border-radius: 18px 18px 0 0;
}

/* .kabuchheader{
  padding: 120px 32px 80px; 
  margin: 0 auto;
  display: flex;
} */

/* masonrygrid code for all project pages! */
.masonrygrid{
  columns: 3;              
  column-gap: 1px;
}



.masonryitem{
  break-inside: avoid;     
  border-radius: 0px;
  margin: 12px;
  
  overflow: hidden;
  
}

.masonryitem img{
  width: 100%;
  display: block;
  border-radius: 12px;
}

.masonryitem video{
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* reveal animation code */

.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}


 /* This was made by claude  */
 /* I wanted to make it so when you click on any of the images on the project pages
 it blurs the background and shows whichever image you clicked closer! */
 .lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img,
.lightbox-overlay video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  cursor: default;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}


/* STICKSTASH PROJECT PAGE */

.cardheaderstickstash{
  background: #6db5e2;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}

/* BEAKBOX PROJECT PAGE */

.cardheaderbeakbox{
  background: #705ea9;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}


/* NONGLI PROJECT PAGE */

.cardheadernongli{
  background: #d62b2b;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}

/* JELLI PROJECT PAGE */

.cardheaderjelli{
  background: #243e75;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}


/* FANTASIA PROJECT PAGE */

.cardheaderfantasia{
  background: #769357;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}


/* UPLIFT PROJECT PAGE */

.cardheaderuplift{
  background: #4d2523;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}

/* CURATED PROJECT PAGE */

.cardheadercurated{
  background: #658c5e;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}

/* VAULTRILLAS PROJECT PAGE */

.cardheadervaultrillas{
  background: #d22665;
  color: white;
  font-family: 'Mona Sans';
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 18px 18px 0 0;
}



