@font-face {
  font-family: 'Providence Sans';
  src: url('fonts/ProvidenceSans.woff2') format('woff2'),
       url('fonts/ProvidenceSans.woff') format('woff'),
       url('fonts/ProvidenceSans.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

body, html {
  height: 100%;
  margin: 0;
  overflow: hidden;
  overflow-x: hidden;
  font-family: "Providence Sans", sans-serif;
  font-display: swap;
}


.social-media {
  display: flex;
  gap: 12px;
}


a {
  position: relative;
  color: inherit;
  text-decoration: none;
  color: white;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #ffd700;
  /* text-decoration: underline; */
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 10px;
  padding: 2rem; /* some space away from edges */
  margin-top: 5rem; /* pushes grid below your nav tabs */
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

/* films.html */
.dvd-stack {
  position: relative;
  width: 320px; /* adjust as needed */
  height: 340px; /* adjust to fit all cases in stack */
  margin: 2rem auto;
}

.dvd-case {
  position: relative;
  width: 100%;

  transform: scale(1.5);  
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.28), 0 3px 8px rgba(60,60,60,0.15);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 1s ease;
}

.dvd-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  pointer-events: none; /* so hover on container still works */
}

.dvd-case.font1 { top: 50px; z-index: 3; font-family: 'Comic Sans MS', cursive, sans-serif; background: #283593; }
.dvd-case.font2 { top: 100px; z-index: 3; font-family: 'Comic Sans MS', cursive, sans-serif; background: #283593; }
.dvd-case.font3 { top:150px; z-index: 2; font-family: 'Courier New', monospace; background: #4E342E; }
.dvd-case.font4 { top: 200px; z-index: 1;  font-family: 'Georgia', serif; background: #00796B; }
.dvd-case.font5 { top: 250px; z-index: 1;  font-family: 'Georgia', serif; background: #00796B; }
.dvd-case.font6 { top: 300px; z-index: 1;  font-family: 'Georgia', serif; background: #00796B; }
.dvd-case.font7 { top: 350px; z-index: 1;  font-family: 'Georgia', serif; background: #00796B; }

.dvd-case:hover {
  transform: scale(1.55);
  /* z-index: 999; 
   box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.12);  */
}

.dvd-case img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


/* art.html */

.gallery-wrapper {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.full-size {
  width: 600px;         /* Fixed width */
  height: 400px;         /* Fixed height */
  margin: 100px auto 15px;
  overflow: hidden;      /* Hide overflowing parts (crop) */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Crop and scale to fill container */
  object-position: center; /* Center image within container */
  display: block;
}

.thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 0;
  transition: border-color 0.3s ease, filter 0.3s ease;
  /* filter: grayscale(100%); */
}

.thumbnail:hover {
  border-color: white;
  /* filter: grayscale(0%); */
}




.construction {
    display: flex;
    flex-direction: column;    /* stack paragraphs vertically */
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    height: 100vh;             /* make container full viewport height */
    margin: 0;                 /* remove default margin */
}


.pile-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 0px; 
}

.pile-image {
  margin-top: 0;
  margin-bottom: 0;
  width: 200px; /* full image width */
  height: auto;
  transform-origin: left center;
  /* transform: scaleY(0.1); */
  height: 30px;
  transition: max-height 0.3s ease-in-out; 
  cursor: pointer;
  overflow: hidden;
}

.pile-image:hover {
   height: 100%;  
  /* transform: scaleX(1);  */
  z-index: 10;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pile-wrapper {
  width: 20px; /* narrow slice width */
  height: 300px;
  overflow: hidden;
  display: inline-block;
  margin-right: -15px; /* to overlap images for pile effect */
  cursor: pointer;
  transition: width 0.3s ease;
  position: relative;
  margin: 0;
}

.pile-wrapper:hover {
  width: 200px; /* full width */
  z-index: 5;
}

.pile-wrapper img {
  height: 100%;
  width: auto;
  transition: transform 0.3s ease;
}

.pile-wrapper:hover img {
  transform: scale(1.05);
}





.white-text {
  color: white;
}

.profile {
  width: 300px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  border-radius: 0%;
}

.right-panel {
  position: relative;  /* Enables absolute positioning inside */
}

.top-tabs {
  position: absolute;
  top: 0;             /* Sits at top of right panel */
  left: 50%;          /* Starts at 50% of right-panel width */
  transform: translateX(-50%); /* Center on right-panel */
  background: rgba(0, 0, 0, 0.7); /* Black, semi-transparent */
  border-radius: 50px;
  padding: 0.5rem 2rem;
  display: flex;
  gap: 4rem;
  z-index: 1000;
  margin-top: 1rem;    /* Optional: space below the panel’s top */

  /* Soft shadow beneath */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 
              0 0 8px rgba(0,0,0,0.6);

  /* Glow effect: blur around the box */
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
}

.tab-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.tab-link:hover {
  color: #ffd700;
}





.split-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.left-panel {
  flex: 0 0 40%; /* ⬅ fixes expansion */
  max-width: 40%;
  height: 100%;
  overflow-y: auto;
  padding: 2rem;
  box-sizing: border-box;
  min-width: 0;

  background-color: rgb(0, 0, 0);    
  /* background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 3px);
  background-size: 8px 8px;
  color: rgb(100, 100, 100);      
   */
 
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='black'/%3E%3Ctext x='0' y='50' font-size='36' font-family='Arial' fill='rgba(255,255,255,0.05)'%3EN%3C/text%3E%3Ctext x='30' y='50' font-size='36' font-family='Arial' fill='rgba(255,255,255,0.05)'%3EZ%3C/text%3E%3C/svg%3E"); */
  background-repeat: repeat;
  background-size: 60px 60px;
  color: rgb(120, 119, 119);

  
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  scrollbar-width: none;         
  -ms-overflow-style: none;   
}


.right-panel {
  background-color: rgb(0, 0, 0);  
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 3px);
  background-size: 8px 8px;
  color: white;         

  width: 60%;
  max-width: 60%;
  height: 100%;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-width: 0;
  scrollbar-width: none;         
  -ms-overflow-style: none;   
}
     

.left-panel::-webkit-scrollbar,
.right-panel::-webkit-scrollbar {
  display: none;                 /* Chrome/Safari */
}

.scroll-loop {
  display: block;
  overflow-y: auto;
  height: 100%;
  scroll-behavior: auto;
  scrollbar-width: none;        
  -ms-overflow-style: none;     
}


.project-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.right-panel {
  height: 100vh;
  padding: 0;
  box-sizing: border-box;
}

.project {
  width: 100%;
  height: 100%; /* 👈 ensures it takes up all of right-panel */
}

.project img {
  width: 100%;         /* or a fixed width like 200px */
  height: 200px;       /* adjust height as you like */
  object-fit: cover;   /* keeps the image nicely cropped */
  display: block;
  
  
}







.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px; /* or any height you want */
  overflow: hidden;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-image-wrapper:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* align to bottom */
  align-items: center;   /* align text to left */
  padding: 1rem;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
  background: rgba(0, 0, 0, 0.8); /* 50% transparent black */
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: left;
}


.project-image-wrapper:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin: 0;
  font-size: 1.5rem;
}

.overlay p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}



.floating-instagram {
  position: fixed;
  bottom: 2rem;
  right: 2rem; /* or use left: 2rem if you prefer */
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  z-index: 1000;
  letter-spacing: 0.03em;
}

.floating-instagram:hover {
  text-decoration: underline;
}

/* hidden stuff that only shows on mobile */
.mobile-logo {
  display: none;
}

.mobile-nav {
  display: none;
}



@media screen and (max-width: 768px) {

  .mobile-logo {
    display: block;
    color: white;
    text-align: center;
    font-size: 2rem;
  }

/* .mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;          
  height: 50px;          
  padding-bottom: env(safe-area-inset-bottom, 0); 
  z-index: 10000;        
  background: black;
  display: flex;          
  justify-content: space-around; 
  align-items: center;   
  padding: 0 1rem;       
} */

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  flex-grow: 1;           /* make each link take equal width */
  text-align: center;
  padding: 0.5rem 0;
}

  .social-media {
    display: none;
  }

  html, body {
    height: auto;
    overflow: auto;
    background: black;
  }

  .split-container {
    flex-direction: column;
    height: auto !important;
    overflow: visible !important;
  }


   .top-tabs {
    position: fixed;
    /* display: none; */
  } 

  .profile {
    display: none;
  }

  .left-panel {
    padding: 50px !important;
  }

  .left-panel,
  .right-panel {
    max-width: 100%;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 1.5rem;
  }

  .right-panel {
    bottom: 50px;
    background: black;
    height: calc(100vh - 50px);
    overflow-y: auto;    
  }

  .scroll-loop {
    height: auto;
    overflow: visible;
  }

  .profile {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .project-image-wrapper {
    height: 200px;
  }

  .overlay {
    display: none !important;
  }

 svg {
  /* top: 20px !important; */
  display: none;
 }

 .right-panel {
  padding: 0 !important;
 }

  .construction {
    height: auto;            /* let height adjust to content */
    justify-content: flex-start; /* align content to top */
    padding: 1rem 0;         /* optional padding for breathing room */
  }

  .floating-instagram:hover {
  text-decoration: none;
}

       
}

@media screen and (max-width: 1000px) {

  /* art gallery  */
.full-size {
  width: 80%;         
  height: 80%;  
}

}