/* ===========================
   Pâtisserie Bouquet - Style
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-light: #fdf0f3;
  --pink-pale:  #fce4ec;
  --pink-mid:   #f4b8c8;
  --pink-deep:  #d4728a;
  --pink-rich:  #b85070;
  --gold:       #c9a96e;
  --gold-light: #f0e6d3;
  --cream:      #fdf8f5;
  --text:       #3d2b2b;
  --text-light: #8a6a6a;
  --white:      #ffffff;
  --font-en: 'Cormorant Garamond', serif;
  --font-round-en: 'Nunito', sans-serif;
  --font-ja: 'M PLUS Rounded 1c', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
}

a { text-decoration: none; color: inherit; }

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pink-mid);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-bird { font-size: 1.2rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-en {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--pink-rich);
}

.logo-ja {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.78rem;
  font-family: var(--font-round-en);
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--pink-deep);
  transition: width 0.3s;
}

.nav a:hover { color: var(--pink-deep); }
.nav a:hover::after { width: 100%; }

/* ===========================
   Hero
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--cream) 60%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-sub {
  font-family: var(--font-round-en);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  font-style: italic;
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-rich);
}

.hero-desc {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--pink-deep);
  color: var(--pink-deep);
  font-family: var(--font-ja);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: var(--pink-deep);
  color: var(--white);
}

/* Floating petals */
.hero-deco { position: absolute; inset: 0; pointer-events: none; }

.petal {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.5;
}

.petal1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 1.5rem; }
.petal2 { top: 25%; right: 12%; animation-delay: 1s; font-size: 1.2rem; }
.petal3 { top: 60%; left: 8%; animation-delay: 2s; font-size: 2rem; }
.petal4 { bottom: 20%; right: 10%; animation-delay: 0.5s; font-size: 1.8rem; }
.petal5 { bottom: 30%; left: 20%; animation-delay: 1.5s; font-size: 1.3rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ===========================
   Section Common
   =========================== */
.section { padding: 96px 0; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}

.section-title span {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===========================
   News
   =========================== */
.news-section { background: var(--white); }

.news-list { list-style: none; }

.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pink-pale);
  flex-wrap: wrap;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.news-tag {
  font-size: 0.68rem;
  padding: 2px 10px;
  border: 1px solid var(--pink-mid);
  color: var(--pink-rich);
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-radius: 20px;
}

.news-item p {
  font-size: 0.9rem;
  color: var(--text);
}

/* ===========================
   Hours
   =========================== */
.hours-section {
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
}

.hours-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background: var(--white);
  padding: 56px 64px;
  border: 1px solid var(--pink-mid);
  max-width: 600px;
  margin: 0 auto;
}

.hours-block { text-align: center; }

.hours-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.hours-time {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--pink-rich);
  letter-spacing: 0.05em;
}

.hours-closed {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.hours-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 8px;
}

.hours-divider {
  font-size: 1.8rem;
  opacity: 0.4;
}

/* ===========================
   Access
   =========================== */
.access-section { background: var(--cream); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.access-icon { font-size: 1.3rem; margin-top: 2px; }

.access-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.access-info p { font-size: 0.9rem; }

.access-map {
  border: 1px solid var(--pink-mid);
  background: var(--pink-light);
}

.map-placeholder {
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.map-placeholder span { font-size: 2.5rem; }

/* ===========================
   Blog
   =========================== */
.blog-section { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border: 1px solid var(--pink-pale);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 114, 138, 0.12);
}

.blog-img {
  height: 140px;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-body { padding: 24px; }

.blog-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.blog-body h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-link {
  font-size: 0.78rem;
  color: var(--pink-deep);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.blog-link:hover { color: var(--pink-rich); }

/* ===========================
   Instagram
   =========================== */
.insta-section {
  background: linear-gradient(160deg, var(--gold-light), var(--pink-light));
  text-align: center;
}

.insta-handle {
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.insta-item {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.2s;
  cursor: pointer;
}

.insta-item:hover { transform: scale(1.04); }

.insta-btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  transition: background 0.3s;
}

.insta-btn:hover { background: var(--pink-rich); }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--text);
  color: var(--pink-pale);
  text-align: center;
  padding: 48px 32px;
}

.footer-deco {
  font-size: 1rem;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  opacity: 0.5;
}

.footer-name {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hours-card { flex-direction: column; gap: 32px; padding: 40px 32px; }
  .access-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
