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

body {
  background: #050505;
  color: white;
  font-family: Arial, sans-serif;
  cursor: none;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
    url("background.jpg");

  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px white);
}

h1 {
  font-size: 50px;
  letter-spacing: 6px;
}

.hero p {
  opacity: 0.6;
  margin: 10px 0 20px;
}

.btn {
  padding: 12px 30px;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 20px white;
}

.gallery {
  padding: 120px 8%;
  background: #050505;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 60px;
  font-size: 30px;
  letter-spacing: 6px;
  color: #ff003c;
  text-shadow: 0 0 10px #ff003c, 0 0 20px #ff003c;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  transition: 0.6s ease;
  filter: brightness(80%);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,60,0.3), rgba(0,200,255,0.3));
  opacity: 0;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(100%);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  box-shadow:
    0 0 20px #ff003c,
    0 0 40px #00f0ff;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightboxImg {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 40px #ff003c, 0 0 60px #00f0ff;
  animation: fadeIn 0.4s ease;
}

#closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

#closeBtn:hover {
  color: #ff003c;
}

#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 20px;
}

#prevBtn:hover,
#nextBtn:hover {
  color: #ff003c;
}

#prevBtn {
  left: 20px;
}

#nextBtn {
  right: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.instagram-feed {
  padding: 120px 8%;
  background: #000;
  text-align: center;
}

.instagram-feed h2 {
  margin-bottom: 60px;
  font-size: 28px;
  letter-spacing: 4px;
}

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

/* Instagram embeds */
.instagram-media {
  background: transparent !important;
}

.insta-gallery blockquote {
  filter: grayscale(30%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  border-radius: 15px;
  overflow: hidden;
}

.insta-gallery blockquote:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0 0 25px red;
}

.fade-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about {
  padding: 80px 20%;
  text-align: center;
  background: #050505;
}

.about-since {
  margin-top: 1rem;
  opacity: 0.85;
}

.about-location {
  margin-top: 1rem;
}

.about-location a {
  color: inherit;
  opacity: 0.9;
}

.about-location a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
  opacity: 0.5;
}

footer .built-by {
  margin-top: 8px;
  font-size: 0.875rem;
}

footer .built-by a {
  color: inherit;
  opacity: 0.9;
}

footer .built-by a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Click drip */
@keyframes drip {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* Cursor */
#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    text-align: center;
    background-attachment: scroll;
    background-position: center 25%;
    background-size: cover;
  }

  h1 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery {
    padding: 80px 5%;
  }

  #prevBtn,
  #nextBtn {
    font-size: 30px;
  }

  #closeBtn {
    font-size: 30px;
    top: 20px;
    right: 20px;
  }

  .about {
    padding: 60px 10%;
  }

  .logo {
    width: 90px;
  }
}
