/* 기본 설정 */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Noto Sans KR', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* 영상 영역 */
.video-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 콘텐츠 영역 */
.content {
  display: none;
  padding: 2rem 1.5rem;
}

/* 타이틀 */
h1 {
  font-family: 'Boldonse', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h2 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

/* 리스트 */
ul {
  padding-left: 1.2rem;
}

ul li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

/* 폼 */
form {
  margin-top: 2rem;
}

input, textarea, button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

button {
  background: #ba3b3b;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: bold;
}

button:hover {
  background: #922e2e;
}

.hidden {
  display: none;
}

/* 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ✅ 모바일 반응형 */
@media (max-width: 600px) {
  .content {
    padding: 1.2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  ul li {
    font-size: 0.95rem;
  }

  input, textarea, button {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  button {
    font-size: 1rem;
    padding: 1rem;
  }
}

