/* public/css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', system-ui, sans-serif;
  line-height: 1.7;
  color: #444;
  background-color: #fffaf5;
}

header {
  background: linear-gradient(135deg, #ffb6c1, #ffe4e1);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
}

header h1 {
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
}

/* 헤더 부제목 강조 */
.subtitle {
  font-size: 1.45rem;
  line-height: 1.6;
  margin: 15px 0 25px 0;
  color: #ff4d94;
  font-weight: 700;
}

.subtitle strong {
  color: #ff2d7a;
  font-size: 1.25em;
  font-weight: 900;
}

/* 사전예약중 배너 */
.reservation-banner {
  background: linear-gradient(90deg, #ff2d7a, #ff6b9d);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: 50px;
  margin: 20px auto;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(255, 45, 122, 0.35);
  text-align: center;
  animation: pulse 2s infinite;
}

.reservation-banner span {
  font-size: 1.1rem;
  display: block;
  margin-top: 4px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* 큰 글자 영역 */
.hero-text {
  text-align: center;
  padding: 40px 20px 60px;
  background: white;
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h2 {
  font-size: 2.6rem;
  color: #ff8fab;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: #555;
}

.album-btn {
  display: inline-block;
  background: #ff8fab;
  color: white;
  padding: 16px 45px;
  font-size: 1.45rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 143, 171, 0.4);
  transition: all 0.3s;
}

.album-btn:hover {
  transform: scale(1.08);
  background: #ff6b9d;
}

/* 샵 전경사진 섹션 */
.shop-image-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff0f5;
}

.shop-image-section img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin-bottom: 20px;
}

/* 장점 섹션 */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 2.4rem;
  color: #ff8fab;
  margin-bottom: 1.8rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* 찾아오는 길 섹션 */
.map-section {
  background: #f8e8ee;
  padding: 60px 20px;
  text-align: center;
}

.map-section img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 25px 0;
}

.opening-info {
  margin-top: 50px;
  font-size: 1.45rem;
  line-height: 1.9;
  background: #fff0f5;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 45, 122, 0.18);
}

.opening-text {
  color: #ff2d7a;
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

footer {
  background: linear-gradient(135deg, #ffe4e1, #ffb6c1);
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.1rem;
}

/* ====================== 법인공고 팝업 ====================== */
#legal-notice-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#legal-notice-content {
  background: white;
  max-width: 620px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.close-btn:hover {
  color: #ff2d7a;
}

#legal-notice-content h2 {
  text-align: center;
  color: #ff2d7a;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.notice-item {
  background: #fff9fb;
  border: 2px solid #ffe4f0;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.notice-item strong {
  font-size: 1.25rem;
  color: #333;
}

.notice-item small {
  color: #888;
  display: block;
  margin: 8px 0 15px 0;
}

.notice-footer {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-top: 25px;
}