/* ═══════ My Salon Dream — Shared Styles ═══════ */

:root {
  --pink: #ff6b9d;
  --pink-light: #ffd1dc;
  --pink-deep: #d63f7c;
  --coral: #ff8e7e;
  --peach: #ffb88c;
  --yellow: #ffd93d;
  --yellow-soft: #fff3a0;
  --mint: #7fdbb6;
  --sky: #6bcfe8;
  --purple: #b794ff;
  --cream: #fff8ec;
  --warm-white: #fffbf5;
  --ink: #2d2438;
  --ink-soft: #5a4f6b;
  --gray: #8a8294;
}
  /* Mobile/iOS critical fixes */
  html {
    -webkit-text-size-adjust: 100%;
  }
  button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(255, 107, 157, 0.2);
    font-family: inherit;
  }
  input, textarea, select {
    -webkit-appearance: none;
    appearance: none;
  }
  /* Prevent zoom on iOS */
  input[type="text"], input[type="email"], input[type="tel"], 
  input[type="number"], textarea, select {
    font-size: 16px !important;
  }
  @media (min-width: 769px) {
    input[type="text"], input[type="email"], input[type="tel"], 
    input[type="number"], textarea, select {
      font-size: inherit !important;
    }
  }


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Zen Maru Gothic', 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

/* ═══════ NAV ═══════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 107, 157, 0.1);
}
.logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-emoji {
  font-size: 1.5rem;
  animation: wave 2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  transition: all 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ═══════ HERO (sub-page) ═══════ */
.page-hero {
  padding: 9rem 2rem 4rem;
  background: linear-gradient(135deg, #fff8ec 0%, #ffe4ed 50%, #fff3a0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.page-hero::before {
  width: 300px; height: 300px;
  background: var(--pink-light);
  top: -50px; left: -50px;
}
.page-hero::after {
  width: 350px; height: 350px;
  background: var(--yellow-soft);
  bottom: -50px; right: -50px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.3;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
}
.page-hero h1 .highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 0.2em;
}
.page-hero p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ═══════ BREADCRUMB ═══════ */
.breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--pink-deep);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ═══════ CONTENT ═══════ */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 5px solid var(--pink);
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.6rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
  margin: 0.5rem 0 1rem 1.5rem;
}

.content-section li {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.content-section strong {
  color: var(--ink);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-table th, .info-table td {
  padding: 1rem 1.3rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream);
}

.info-table th {
  background: var(--cream);
  width: 35%;
  font-weight: 700;
  color: var(--ink);
}

.info-table td {
  color: var(--ink-soft);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.notice-box {
  background: linear-gradient(135deg, var(--cream), var(--yellow-soft));
  border-left: 5px solid var(--yellow);
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.notice-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.notice-box p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: right;
  font-style: italic;
  margin-top: 2rem;
}

/* ═══════ CTA ═══════ */
.cta {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--yellow-soft) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.cta p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5);
}

/* ═══════ FOOTER ═══════ */
footer {
  padding: 3rem 2rem 2rem;
  background: var(--ink);
  color: white;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-light); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem; }
  .logo { font-size: 1.05rem; }
  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }
  .page-hero {
    padding: 6.5rem 1.2rem 3rem;
  }
  .page-hero h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .breadcrumb {
    padding: 1rem 1.2rem 0;
  }
  .content {
    padding: 3rem 1.2rem 4rem;
  }
  .content-section h2 {
    font-size: 1.2rem;
  }
  .content-section h3 {
    font-size: 1rem;
  }
  .content-section p,
  .content-section li {
    font-size: 0.9rem;
  }
  .info-table th, .info-table td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .info-table th {
    width: 35%;
  }
  .cta {
    padding: 3.5rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .logo span:not(.logo-emoji) { display: none; }
  .info-table {
    font-size: 0.8rem;
  }
  .info-table, .info-table tbody, .info-table tr {
    display: block;
  }
  .info-table th {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--cream);
  }
  .info-table td {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem 1rem;
    border-bottom: 2px solid var(--cream);
  }
}
