@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Cinzel&display=swap');

body {
  background: radial-gradient(circle at top, #2b1d14, #0f0a07);
  color: #e7dcc8;
  font-family: "Playfair Display", serif;
  padding: 40px 20px;
}

/* Header */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
}

.page-header p {
  font-style: italic;
  color: #c7b59b;
}

.ornament {
  margin-top: 16px;
  letter-spacing: 8px;
  color: #b89b6a;
}

/* Gallery */
.gallery {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 60px;
}

/* Card */
.compare-card {
  background: linear-gradient(145deg, #1b120c, #2a1b12);
  border: 2px solid #6b4a2f;
  padding: 24px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.compare-card h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 16px;
  color: #e6cfa3;
}

/* Comparison Box */
.img-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.img-compare img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img {
  clip-path: inset(0 50% 0 0);
}

/* Slider */
.img-compare input {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
