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

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Display', sans-serif;
}








/* CONSTANT STYLES----CONSTANT STYLES----CONSTANT STYLES----CONSTANT STYLES */
/* Entry Animation */

.page-entry {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.page-entry.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Ring Cursor */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #FF2600;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 6px rgba(98, 98, 98, 0.4);
  transform: translate(-50%, -50%);
  transition: border-color 0.3s ease, transform 0.15s ease-out;
  mix-blend-mode: difference;
}

/* Enlarge on hover */
.cursor-ring.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: white;
}

@media (max-width: 600px) {
  .cursor-ring {
    display: none !important;
  }
}

body {
  cursor: none;
}

/* Scroll Meter */
.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: #FF2600;
  border-radius: 24px;
  z-index: 9999;
  transition: width 0.2s ease-out;
}

/* Navbar */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* optional subtle divider */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);         /* optional depth */
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;  
  z-index: 1000;
  font-family: 'SF Pro Display', monospace;
  font-size: smaller;
  font-weight: 650;
}


.wave {
  font-size: 1.2rem;
}


.logo-link {
  color: #666;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.logo-text {
  transition: color 0.25s ease;}

.logo-link:hover .logo-text {
  color: #FF2600;
}

/* Logo Animation*/
@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.wave {
  display: inline-block;
  animation: wave 3s infinite;
  transform-origin: 79% 70%;
}


/* Wrap logo and breadcrumb together */
.logo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem; /* Adjust spacing between logo and breadcrumb */
}

/* Base breadcrumb style */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Pro Display', monospace;
  font-weight: 236;
  font-size: 0.7rem;
  color: #666;
  opacity: 0.9;
}

.breadcrumb {
  transition: color 0.3s ease;
}

.breadcrumb-separator {
  color: #999;
  font-weight: 100;
}

/* Current page stands out slightly */
.breadcrumb.current {
  font-size: 0.82rem;
  font-weight: 500;
  color: #222;
}



@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
  }

  .breadcrumb-nav {
    font-size: 0.68rem;
    flex-wrap: wrap;
    line-height: 1.2;
    gap: 0.3rem;
  }

  .logo-text {
    font-size: 1rem;
    line-height: 1.2;
  }

  .wave {
    font-size: 1rem;
  }
}







/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  stroke: 1rem;
  
    background: rgba(255, 255, 255, 0.58);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* optional subtle divider */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);         /* optional depth */
transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;  
  z-index: 1000;
  color: #FF2600;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  
}

.back-to-top:hover {
  transform: translateY(-6px);
  background-color: #ffd8d2;
}


/* FOOTER----FOOTER----FOOTER----FOOTER----FOOTER */



.site-footer {
  background-color: #fff;
  color: #FF2600;
  padding: 1rem 2rem 2rem;
  font-family: 'SF Pro Display', sans-serif;
}

.footer-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #FF2600;
}


.footer-column p {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul a {
  color: #FF2600;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease-in-out;
}

.footer-column ul a:hover {
  color: #000; /* Optional: hover color contrast */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-family: monospace;
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.6;
}

.footer-cv-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: rgba(255, 38, 0, 0.11);
  color: #FF2600;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-cv-button:hover {
  background-color: #0ac46f;
  color: #fff;
}

.footer-contact {
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.footer-contact a {
  color: #FF2600;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Hidden on initial load */
.hidden-on-load {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Reveal when visible */
.hidden-on-load.visible {
  opacity: 1;
  transform: translateY(0);
}




/* FOOTER----FOOTER----FOOTER----FOOTER----FOOTER */



/* CONSTANT STYLES----CONSTANT STYLES----CONSTANT STYLES----CONSTANT STYLES */






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






/* ALL CONTENT----ALL CONTENT----ALL CONTENT----ALL CONTENT----ALL CONTENT */
/* Content */

/* Photo Quote */
.photo-quote {
  max-width: 700px;
  margin: 4rem auto 2rem;
  padding: 0 1.4rem;
  font-size: 2rem;
  font-family: 'SF Pro Display', monospace;
  text-align: center;
  color: #7e7e7e;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 2s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo-quote p {
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.9;
}

.photo-quote small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}



.photo-quote2 {
  max-width: 700px;
  margin: 5rem auto 8rem;
  padding: 0 1.4rem;
  font-size: 2rem;
  font-family: 'SF Pro Display', monospace;
  text-align: center;
  color: #7e7e7e;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 2s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo-quote2 p {
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.5;
}

.photo-quote2 small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}




/* Gallery */
.masonry-column {
  column-count: 3;
  column-gap: 0.05px;
  padding: 2rem;
}

.masonry-column img {

  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

  .masonry-column img:hover {
    transform: scale(1.01);
  }

/* Responsive adjustments */


@media (max-width: 500px) {
  .masonry-column {
    padding: 1rem;
    column-count: 3;
    
  }
}


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.47);
  backdrop-filter: blur(18px);
   -webkit-backdrop-filter: blur(18px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem; /* Add breathing room */
  overflow-y: auto; /* 🔧 Allows scrolling for tall images */
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh; /* 🔧 Leave space for caption */
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0,0,0,0.4);
  transform: scale(0.84);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.7s ease;
}

.lightbox.show img {
  transform: scale(1);
  opacity: 1;
}




/* Lightbox Captions */
/* Captions always visible */
.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #000000;
  max-width: 90%;
  backdrop-filter: blur(4px); /* optional: adds subtle glassy feel */
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.show .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}
  







/* ALL CONTENT----ALL CONTENT----ALL CONTENT----ALL CONTENT----ALL CONTENT */









/* CONTESTED----CONTESTED----CONTESTED----CONTESTED----CONTESTED */






