@charset "UTF-8";

/* =========================================================
   index.css - 메인 페이지 전용 스타일
========================================================= */

/* 메인 배너 (Hero) */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url("/public/img/background.jpg")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  margin-top: 440px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}

.btn-group {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    text-align: center;
    width: 100%;
  }
}
