body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff8dc;
  color: black;
}

/* HEADER */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo {
  height: 70px;
}

/* HERO */
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

/* GALLERY (FIXED) */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 800px;
  margin: 40px auto;
  gap: 20px;
}

.card {
  width: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER */
.image-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #fff8dc;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.overlay span {
  color: #fff8dc;
  font-size: 16px;
  letter-spacing: 1px;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

/* ABOUT */
.about-text {
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.about-text::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: black;
  margin: 0 auto 20px;
}

.about-text.show {
  opacity: 1;
  transform: translateY(0);
}

.about-text h2 {
  font-size: 28px;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #d4af37, #f5e6a5, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* SCROLL IMAGE */
.scroll-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  max-width: 1200px;
  margin: 80px auto;
}

.scroll-image img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}

/* INFO SECTION */
.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 60px auto;
  gap: 40px;
  text-align: center;
}

.info-box {
  color: black;
}

.line {
  height: 1px;
  background: black;
  width: 100%;
  margin: 15px 0;
}

.info-box p {
  font-size: 16px;
  letter-spacing: 1px;
}

/* MINI GALLERY */
.mini-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 900px;
}

.mini-gallery img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.footer-left {
  max-width: 400px;
}

.footer-left h2 {
  font-size: 24px;
  letter-spacing: 3px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-title {
  font-size: 14px;
  letter-spacing: 2px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.footer-right a {
  color: black;
  font-size: 22px;
  transition: 0.3s;
}

.footer-right a:hover {
  transform: scale(1.2);
  color: #d4af37;
}

/* MOBILE PERFECT */
@media (max-width: 768px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px;
  }

  .logo {
    height: 50px;
  }

  .scroll-image {
    height: 250px;
    margin: 20px;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 20px;
  }

  .mini-gallery img {
    width: 90px;
    height: 90px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

}

.mini-item {
  text-align: center;
}

.mini-item p {
  color: black;
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {

  .mini-gallery {
    gap: 10px;
  }

  .mini-item {
    width: 30%;
  }

  .mini-item img {
    width: 90px;
    height: 90px;
  }

  .mini-item p {
    font-size: 11px;
  }

}

/* INFO IMAGES */
.info-img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.info-img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.insta-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .info-img {
    max-width: 100%;
  }

  .lightbox-img {
    max-width: 95%;
    max-height: 60%;
  }
}

/* PREMIUM LIGHTBOX */

.lightbox {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  transform: scale(0.8);
  transition: 0.4s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.insta-btn {
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #d4af37, #f5e6a5, #d4af37);
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.insta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* IMAGE LOADING */
.fade-img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-img.loaded {
  opacity: 1;
}

.img-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  animation: loading 1.2s infinite;
  border-radius: 10px;
}

@keyframes loading {
  0% { background-position: -200px; }
  100% { background-position: 200px; }
}

/* HOVER GLOW */
.image-wrapper:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
  transition: 0.3s;
}

/* MOBILE APP FEEL */

.image-wrapper:active {
  transform: scale(0.97);
  transition: 0.15s;
}

@media (max-width: 768px) {

  body {
    padding: 5px;
  }

  .gallery {
    gap: 15px;
  }

  .info-section {
    gap: 30px;
  }

  .about-text {
    padding: 0 10px;
  }

}

.image-wrapper:active {
  box-shadow: 0 0 20px rgba(212,175,55,0.7);
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.overlay {
  pointer-events: none;
}

.gallery .overlay {
  display: none;
}

/* TITLE */
.title {
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* SCROLLABLE DESCRIPTION */
.desc {
  max-height: 80px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  padding: 5px 10px;
  text-align: left;
  scrollbar-width: thin;
}

/* SCROLLBAR */
.desc::-webkit-scrollbar {
  width: 4px;
}

.desc::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* NEW PREMIUM FADE */
.desc-wrapper {
  position: relative;
}

.desc-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, #fff8dc, transparent);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.desc-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to top, #fff8dc, transparent);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.desc-wrapper.show-top::before {
  opacity: 1;
}

.desc-wrapper.show-bottom::after {
  opacity: 1;
}
/* SMOOTH SCROLL FEEL */
.desc {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}