* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('assets/cursor.png'), auto;
}

@keyframes curtainReveal {
  from { transform: scaleY(1); }
  to { transform: scaleY(0); }
}

#curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  transform: scaleY(1);
  transform-origin: top;
  animation: curtainReveal 0.75s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  z-index: 9999;
  pointer-events: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.announcment
{
  height: auto;
  background: rgba(0, 0, 0, 1);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  z-index: 10000;
}

.announcment p {
  margin: 0;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  /* font-family: 'Poppins', sans-serif; */
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
  cursor: url('assets/cursor.png'), auto;
}

.canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* 
.canvas::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, rgba(202, 11, 11, 0.8), rgba(255, 255, 255, 0));
  z-index: 0; 
  /* pointer-events: none;
}  */

.header {
  padding: 0 1em;
}

.header-1,
.header-2 {
  padding: 0.8em 0em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.header h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  font-style: italic;
  margin: 0;
  line-height: 100%;
}

.header h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-style: italic;
  margin: 0;
  line-height: 100%;
}

.header h1 span,
.header h2 span {
  position: relative;
  top: 120px;
  opacity: 0;
}

.intro {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.intro-col {
  flex: 1;
}

.intro p {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 150%;
}

.intro-col:nth-child(1) {
  display: flex;
}

.intro-col:nth-child(1) > div {
  flex: 1;
}

.intro-about {
  width: 100%;
  display: flex;
  gap: 2em;
}

.intro-about-col {
  flex: 1;
}

.intro-about-col p,
.intro-data p {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: none;
}

.intro-data p.intro-header {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 150%;
  color: #000;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  color: black;
  font-size: 0.9em;
  position: fixed;
  left: 1rem;
  top: 70%;
  mix-blend-mode: multiply;
  transform: translateY(-50%);
  z-index: 3;
}

footer a {
  display: inline-block;
  padding: 10px;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.6;
}

footer img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 900px) {
  .header h1 {
    font-size: 40px;
    margin-top: 80px;
  }

  .intro {
    flex-direction: column-reverse;
    gap: 4em;
  }

  .intro-about {
    flex-direction: column;
  }

}

.star-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star-cell {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star {
  position: relative;
  width: 100px;
  height: auto;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.star-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  pointer-events: auto;
  cursor: grab;
}

.star-link.dragging {
  cursor: grabbing;
  z-index: 10;
}

.star-label {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 4px;
  pointer-events: none;
}

.mobile-break {
  display: none;
}

@media (min-width: 769px) {
  .star-grid {
    width: 60%;
    height: 70%;
    left: 20%;
    top: 15%;
  }

  .star {
    width: 230px;
  }

  .star-cell:nth-child(1) .star-link {
    transform: translate(25px, 20px);
  }

  .star-cell:nth-child(2) .star-link {
    transform: translate(-50px, -30px);
  }

  .star-cell:nth-child(3) .star-link {
    transform: translate(180px, -100px);
  }

  .star-cell:nth-child(4) .star-link {
    transform: translate(-25px, -20px);
  }
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .star-grid {
    position: fixed;
    top: 220px;
    bottom: 80px;
    left: 5%;
    width: 90%;
    z-index: 1;
  }

  .star {
    width: 120px;
  }


  footer {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .intro-about {
    padding-right: 1.5rem;
  }

  .intro-about p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
