/* assets/style.css */

/* 기본 레이아웃 */
body {
  margin: 0;
  font-family: 'Apple SD Gothic Neo','맑은 고딕',sans-serif;
  background: #f9fbff;
  color: #333;
  line-height: 1.6;
}

/* 헤더 */
header {
  background: linear-gradient(135deg, #0052cc, #007bff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
header h1 {
  font-size: 2rem;
  margin: 0 0 10px;
}
header p {
  font-size: 1rem;
  margin: 0;
}

/* 본문 컨텐츠 */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.content h2 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: #0052cc;
}
.content p {
  margin-bottom: 18px;
  color: #444;
}

/* 버튼 */
.btn-main {
  display: inline-block;
  background: #fff;
  color: #0052cc;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 2px solid #0052cc;
  transition: 0.3s;
}
.btn-main:hover {
  background: #0052cc;
  color: #fff;
}

/* 이벤트 배너 */
.event-banner {
  margin: 40px auto;
  text-align: center;
  max-width: 700px;
}
.event-banner img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.event-banner img:hover {
  transform: scale(1.02);
}

/* 푸터 */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

/* 모바일 최적화 */
@media (max-width: 600px) {
  header { padding: 40px 15px; }
  header h1 { font-size: 1.6rem; }
  header p { font-size: 0.9rem; }
  .btn-main { font-size: 1rem; padding: 12px 20px; }
  .content h2 { font-size: 1.2rem; }
}
