/* styles.css */
@font-face {
  font-family: "LucidaBright";
  src: url("../fonts/LucidaBright.ttf") format("truetype");
}
@font-face {
  font-family: "YuGothicUI";
  src: url("../fonts/YuGothicUI-Regular-slim.ttf") format("truetype");
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "YuGothicUI", sans-serif;
  background: #fff;
  line-height: 1.6;
  font-size: 2.5vh;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}
.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero-text h1 {
  font-family: "LucidaBright", serif;
  font-size: 6vh;
  margin-bottom: 1rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}