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

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: #3D0000;
  color: white;
  font-family: 'Instrument Sans', sans-serif;
  
  
  overflow-y: auto; 
  overflow-x: hidden;
  

  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

body.is-visible {
  opacity: 1;
}


.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(61,0,0,0.8), transparent);
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 1;
}

.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


.content-wrapper {
  padding: 140px 5% 80px 5%;
  min-height: calc(100vh - 100px);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: auto;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.gallery-item img:hover {
  filter: grayscale(0%);
}

.gallery-item span {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.6;
}


.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h3 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.about-text p, .about-text a {
  margin-bottom: 30px;
  display: block;
  color: white;
  text-decoration: none;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  filter: blur(2px);
}


footer {
  padding: 40px 5%;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  opacity: 0.5;
  text-align: left;
}


@media (max-width: 768px) {
  .nav {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #3D0000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .burger {
    display: block;
    z-index: 1001;
  }

  .about-section {
    grid-template-columns: 1fr;
  }
  
  .page-title {
    font-size: 2rem;
  }
}


.title {
  position: relative;
  font-size: 5rem; 
  color: white;
  z-index: 10;
  pointer-events: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400; 
}


.trail-img {
  position: fixed;
  width: 240px;
  height: auto;
  pointer-events: none;
  z-index: 5;
 
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  
  will-change: transform, opacity;
  transition: 
    opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), 
    transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.trail-img.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.trail-img.is-fading {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}


footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 40px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.4;
  z-index: 100;
}


.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3D0000;
  overflow: hidden;
}



body.fade-out {
  opacity: 0; 
}



body {
  font-family: 'Instrument Sans', sans-serif;
  background: #3D0000;
  color: white;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
body.is-visible { opacity: 1; }


.page-title {
  font-size: 5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
  line-height: 0.8;
}


.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 150px;
}

.intro-large h2 {
  font-size: clamp(30px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 450px;
}


.about-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  min-height: 100vh;
  width: 100%;
}


.about-left {
  padding: 120px 10% 60px 10%; 
  display: flex;
  flex-direction: column;
}

.about-text-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.intro-quote {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 30px !important;
}


.contact-sub-section {
  margin-top: 40px;
}

.contact-sub-section h3 {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 10px;
  font-weight: 400;
}

.social-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}


.about-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh; 
  width: 100%;
}

.about-right {

  height: 100vh;
  position: sticky;
  top: 0;
}

.side-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: grayscale(0.2);
}


@media (max-width: 1024px) {
  .about-page-container {
    grid-template-columns: 1fr;
  }
  .about-right {
    height: 60vh;
    position: relative;
  }
}

.contact-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.contact-link:hover {
  border-bottom-color: rgba(255, 255, 255, 1);
}


.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;   
  cursor: pointer;
  filter: grayscale(0.2);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item img:hover {
  filter: grayscale(0);
  transform: scale(1.02);
}




.lightbox {
  display: flex; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background: rgba(20, 20, 20, 0.9); 
  
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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