/* ===================== BODY & BACKGROUND ===================== */
body {
  font-family: 'Cinzel Decorative', serif;
  background: url('images/tree.avif') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* ===================== HEADER ===================== */
.header {
  text-align: center;
  margin: 2rem 0 3rem 0;
}

.header h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #cfcec4;
  text-shadow: 2px 2px 6px #000;
}

/* ===================== CHARACTER GALLERY ===================== */
.character-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.character-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.character-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.character-item img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  border: 5px solid black;
  object-fit: cover;
  transition: transform 0.3s;
}

.character-item img:hover {
  transform: scale(1.05);
}

.character-desc {
  font-family: 'Cinzel Decorative', serif;
  color: #f4c2c2;
  text-align: center;
  margin-top: 10px;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
.back-home {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* aligns left */
  margin-bottom: 20px;
}

.back-home a {
  text-decoration: none;
  color: #f4c2c2;
  background-color: rgba(0,0,0,0.65);
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(1rem, 1vw, 1.2rem);
  transition: 0.3s;
}

.back-home a:hover {
  background-color: #f4c2c2;
  color: #000;
  box-shadow: 0 0 10px #f4c2c2;
}


/* ===================== CONTACT ===================== */
.contact-section {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 60px auto;
  text-align: center;
  padding: 25px;
  background: rgba(0,0,0,0.7);
  border: 2px solid #fff;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  text-shadow: 2px 2px 6px #000;
}

.contact-email {
  color: #dbaca9;
  text-decoration: underline;
  font-weight: bold;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:900px) {
  .character-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .character-item img {
    max-width: 90%;
  }
}


