html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: linear-gradient(to top, #C084FC 0%, #D8B4FE 20%, #E9D5FF 40%, #F3E8FF 60%, #FAF8F3 80%);
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  color: #1D1D1D;
  padding: 2rem;
  min-height: 100vh;
}

/* MAIN LAYOUT */

@font-face {
  font-family: 'Feroniapi';
  src: url('./fonts/Feroniapi-MediumItalic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.la-belle-aurore-regular {
  font-family: "La Belle Aurore", cursive;
  font-weight: 400;
  font-style: normal;
}


.kitty{
    display: flex;
  flex-direction: column;
  margin: 0;
  flex:1;
  margin-top:40rem;
  text-decoration: none;
}

.container {
  display: flex;
  gap: 4rem;
}

.container2 {
  display: block;
}

.left-panel {
  width: 30%;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.left-panel2 {
  width: 30%;
  position: sticky;
  top: 2rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.right-panel {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 1rem;
}

.right-panel2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.right-panel2 .project {
  min-width: 0;
}

.right-panel2 img,
.right-panel2 video {
  width: 100%;
  height: auto;
  display: block;
}


.site-header {
  position: fixed;
  font-size: 0.7rem;
}

.caption {
  color: black;
  font-size: 0.9rem;
  font-weight: 100;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  width: 80%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.symbol {
  color: #C084FC;
  display: inline-block;
  animation: slow-rotate 20s linear infinite;
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* TYPOGRAPHY */

h1 {
  font-family: 'Feroniapi', cursive;
  font-weight: 500;
  color: black;
  font-size: 3rem;
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.p2 {
  color: darkgrey;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

a {
  cursor: pointer;
  pointer-events: auto;
}

/* BUTTONS */

.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.cta {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  background: #C084FC;
  color: white;
  cursor: pointer;
}

/* PROJECT IMAGES */

.right-panel img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.right-panel video {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}


.right-panel img:hover {
  transform: scale(1.02);
}

/* CUSTOM CURSOR */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #C084FC;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.3s ease;
}

.site-nav {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: transparent;
  margin-bottom: 1rem;
  border-bottom: 2px solid #C084FC;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  text-decoration: none;
}

.site-nav a {
  padding-left: 0;
  color: black;
  font-weight: 500;
  transition: opacity 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.site-nav a:hover {
  color: #C084FC;
}

/* LIGHTBOX */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-video {
  max-width: 90%;
  max-height: 90%;
}

/* MOBILE & TABLET RESPONSIVE */

@media (max-width: 1024px) {
  
  body {
    padding: 1.5rem;
  }

  .container {
    flex-direction: column;
    gap: 2rem;
  }

  .left-panel {
    width: 100%;
    position: relative;
    top: 0;
  }

  .right-panel {
    width: 100%;
    margin-top: 0;
  }

  .site-header {
    position: relative;
    font-size: 0.6rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  h1 {
    font-size: 3.5rem;
      font-family: 'Feroniapi', cursive;
  }

  .buttons {
    flex-direction: column;
  }

  .cta {
    width: 40%;
  }

  .caption {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

  p{
    font-size: 1rem;
  }


}

@media (max-width: 480px) {
  
  body {
    padding: 0;
  }

  h1 {
    font-size: 2rem;
      font-family: 'Feroniapi', cursive;
  }

  h2 {
    font-size: 1.2rem;
  }

  .site-header {
    font-size: 0.5rem;
  }

  .caption {
    font-size: 0.8rem;
  }

  html, body {
  overflow-x: hidden;
}

.laila-layout{
  padding:0;
}


}