/* Beauty Rose (뷰티 로제) Design Pattern */
/* 향촌흑염소 - 교대 기력보충 식당 */

:root {
  --rose-primary: #C4586A;
  --rose-dark: #8B2F3F;
  --rose-light: #F5E6E8;
  --rose-gold: #D4A574;
  --rose-cream: #FFF8F6;
  --rose-text: #3D2C2E;
  --rose-muted: #8E7073;
  --rose-white: #FFFFFF;
  --rose-border: #E8C8CC;
  --rose-shadow: rgba(196, 88, 106, 0.12);
  --rose-gradient: linear-gradient(135deg, #C4586A 0%, #D4A574 100%);
}

/* === GLOBAL === */
body {
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  color: var(--rose-text);
  background: var(--rose-cream);
  line-height: 1.8;
}

/* === HERO SECTION === */
.beauty-hero {
  position: relative;
  background: var(--rose-gradient);
  padding: 80px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.beauty-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.beauty-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.beauty-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
}
.beauty-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
}

/* === SECTION === */
.beauty-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.beauty-section-title {
  font-size: 1.8rem;
  color: var(--rose-dark);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.beauty-section-desc {
  text-align: center;
  color: var(--rose-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.beauty-divider {
  width: 60px;
  height: 3px;
  background: var(--rose-gradient);
  margin: 16px auto 32px;
  border-radius: 2px;
}

/* === CARD GRID === */
.beauty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.beauty-card {
  background: var(--rose-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--rose-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--rose-border);
}
.beauty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(196, 88, 106, 0.2);
}
.beauty-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.beauty-card-body {
  padding: 24px;
}
.beauty-card-body h3 {
  font-size: 1.15rem;
  color: var(--rose-dark);
  margin-bottom: 8px;
}
.beauty-card-body p {
  color: var(--rose-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === INFO BOX === */
.beauty-info {
  background: var(--rose-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px var(--rose-shadow);
  border: 1px solid var(--rose-border);
}
.beauty-info-row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rose-light);
}
.beauty-info-row:last-child {
  border-bottom: none;
}
.beauty-info-label {
  font-weight: 600;
  color: var(--rose-primary);
  min-width: 100px;
  flex-shrink: 0;
}
.beauty-info-value {
  color: var(--rose-text);
}

/* === CTA === */
.beauty-cta {
  background: var(--rose-gradient);
  text-align: center;
  padding: 60px 20px;
  color: white;
}
.beauty-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.beauty-cta .cta-phone {
  display: inline-block;
  background: var(--rose-white);
  color: var(--rose-dark);
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition: transform 0.2s;
}
.beauty-cta .cta-phone:hover {
  transform: scale(1.05);
}

/* === GALLERY === */
.beauty-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.beauty-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}
.beauty-gallery img:hover {
  transform: scale(1.03);
}

/* === FAQ === */
.beauty-faq {
  max-width: 800px;
  margin: 0 auto;
}
.beauty-faq-item {
  background: var(--rose-white);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 24px;
  border: 1px solid var(--rose-border);
}
.beauty-faq-item h3 {
  color: var(--rose-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.beauty-faq-item p {
  color: var(--rose-muted);
  font-size: 0.95rem;
}

/* === MAP === */
.beauty-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--rose-shadow);
}
.beauty-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* === FOOTER === */
.beauty-footer {
  background: var(--rose-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}
.beauty-footer strong {
  color: white;
}

/* === POST STYLING === */
.beauty-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.beauty-post-content h1 {
  color: var(--rose-dark);
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--rose-primary);
}
.beauty-post-content h2 {
  color: var(--rose-dark);
  font-size: 1.5rem;
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--rose-primary);
}
.beauty-post-content h3 {
  color: var(--rose-primary);
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.beauty-post-content p {
  margin-bottom: 16px;
  line-height: 1.9;
}
.beauty-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 12px var(--rose-shadow);
}
.beauty-post-content blockquote {
  border-left: 4px solid var(--rose-gold);
  background: var(--rose-light);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--rose-dark);
}
.beauty-post-content ul, .beauty-post-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.beauty-post-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.beauty-post-content .highlight-box {
  background: var(--rose-gradient);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}
.beauty-post-content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.beauty-post-content .info-table th {
  background: var(--rose-primary);
  color: white;
  padding: 12px;
  text-align: left;
}
.beauty-post-content .info-table td {
  padding: 12px;
  border-bottom: 1px solid var(--rose-border);
}
.beauty-post-content .info-table tr:nth-child(even) {
  background: var(--rose-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .beauty-hero h1 { font-size: 1.8rem; }
  .beauty-hero { padding: 50px 16px; }
  .beauty-section { padding: 40px 16px; }
  .beauty-grid { grid-template-columns: 1fr; }
  .beauty-gallery { grid-template-columns: repeat(2, 1fr); }
  .beauty-info { padding: 24px; }
  .beauty-info-row { flex-direction: column; }
  .beauty-info-label { margin-bottom: 4px; }
  .beauty-card img { height: 180px; }
}
@media (max-width: 480px) {
  .beauty-gallery { grid-template-columns: 1fr; }
  .beauty-hero h1 { font-size: 1.5rem; }
}
