* {  margin: 0; padding: 0; box-sizing: border-box;}

html, body { background: #fbf0d1; color: #4c2207; font-family: "Inter", sans-serif; 
  line-height: 1.6; scroll-behavior: smooth; }

#container {
  width: min(1200px, 100%);
  position: relative;
  margin: auto;
}
  .intro-section {
  display: block !important;
}

.intro-container { display: flex; justify-content: center;
  align-items: center;  max-width: 1000px; margin: 0 auto; }

h1 { text-align: center; color: #111;  font-family: 'Arial', sans-serif; font-weight: lighter;
  letter-spacing: 1px; font-size: 30px; margin-bottom: 60px;
}
h2 { text-align: center; color: #111; font-family: 'Arial', sans-serif; font-weight: lighter;
  letter-spacing: 1px; font-size: 20px; text-align: left;
}
p { text-align: center; color: #4c2207; font-family: 'Arial', sans-serif; font-weight: lighter;
  letter-spacing: 1px; font-size: 16px; text-align: left;
}
#gallery { width: 100%; height: 300px; position: relative; perspective: 2000px; transform-style: preserve-3d;
}

.item { position: absolute; width: 200px; height: 327px; object-fit: cover; border-radius: 8px; transition: transform 0.3s ease, opacity 0.3s ease;
  backface-visibility: hidden; image-rendering: crisp-edges; image-rendering: -webkit-optimize-contrast; transform: translateZ(0); 
}

#caption { width: 80%; margin: 0 auto;  text-align: center;  margin-top: 80px;
  font-size: 16px; letter-spacing: 1px; font-weight:lighter; font-family: 'Arial', sans-serif; color: #111;
  background: #aebcd0; padding: 10px 20px; border-radius: 6px;}
#details { width: 80%; margin: 0 auto; margin-top: 20px; display: flex; gap: 20px; padding: 20px; background: #aebcd0;
  border-radius: 10px;  color: #111; margin-bottom: 40px;
}

#details.hidden { display: none;}
#details-text {color: #111;}
.details-left img {  width: 200px; border-radius: 8px; }

.details-right { flex: 1; }

.details-btn { display: inline-block; margin-top: 15px; padding: 10px 20px; background: #29ffff;
  color: #111; border-radius: 6px; text-decoration: none; font-weight: bold;
}
.details-btn:hover { background: #aebcd0;
  color: #111; border-radius: 6px; text-decoration: none; font-weight: bold; border: 1px solid #111;
}

@media (max-width: 1000px) {
  #container { max-width: 640px; margin: 10px; }
  .item {width: 140px; height: 262px;}
}

