* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Pretendard', sans-serif;
}


/* ================= HERO ================= */

.hero{
  position: relative;
  height: 85vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-logo{
  width: 120px;
  margin-bottom: 30px;
}

.hero h1{
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero p{
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn{
  padding: 12px 28px;
  border: 1px solid rgba(200,170,110,0.6);
  color: rgba(200,170,110,0.95);
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn.primary{
  background: rgba(200,170,110,0.9);
  color: #111;
}

.btn:hover{
  background: rgba(220,195,135,1);
  color: #111;
}
/* ================= POSTER (Full Image) ================= */
.poster{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 12px;
  background: #0e0e0e;
}

.poster-img{
  width: 100%;
  max-width: 980px;   /* ✅ 너무 커지지 않게 제한 */
  height: auto;
  display: block;
  border-radius: 10px;
}