/* ===== KuraKura site styles ===== */

:root {
  --color-cream: #fffaf3;
  --color-bg: #fff4e4;
  --color-brown: #5a3e2b;
  --color-brown-light: #8a6a52;
  --color-accent: #e8743c;
  --color-accent-dark: #c95a26;
  --color-yellow: #f7c54f;
  --radius: 18px;
  --font-jp: "Zen Maru Gothic", sans-serif;
  --font-en: "Quicksand", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-jp);
  color: var(--color-brown);
  background: var(--color-cream);
  line-height: 1.9;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 14px 24px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(90, 62, 43, 0.08);
}

.header__logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header__logo span,
.footer__logo span {
  color: var(--color-yellow);
}

.header__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header__nav a {
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 2px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.header__nav a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-yellow);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 197, 79, 0.35) 0 120px, transparent 121px),
    radial-gradient(circle at 85% 65%, rgba(232, 116, 60, 0.2) 0 150px, transparent 151px),
    radial-gradient(circle at 70% 15%, rgba(247, 197, 79, 0.25) 0 80px, transparent 81px),
    var(--color-bg);
  text-align: center;
  padding: 96px 24px 120px;
}

.hero__emoji {
  font-size: 2rem;
  letter-spacing: 0.4em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-brown-light);
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 42px;
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--color-accent-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--color-accent-dark);
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== Sections ===== */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section--alt {
  max-width: none;
  background: var(--color-bg);
}

.section--alt > * {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 40px;
}

.section__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.about__text p + p {
  margin-top: 1em;
}

.about__points {
  list-style: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(90, 62, 43, 0.08);
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.about__points li + li {
  border-top: 1px dashed #e8d9c5;
}

.about__points span {
  font-size: 1.4rem;
}

/* ===== Menu ===== */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(90, 62, 43, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(90, 62, 43, 0.14);
}

.card__emoji {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--color-brown-light);
}

.card__price {
  margin-top: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-accent);
}

/* ===== News ===== */
.news__list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
}

.news__list li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 16px 8px;
  flex-wrap: wrap;
}

.news__list li + li {
  border-top: 1px dashed #e8d9c5;
}

.news__list time {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ===== Access ===== */
.access__table {
  max-width: 680px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(90, 62, 43, 0.08);
}

.access__table > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.access__table > div + div {
  border-top: 1px dashed #e8d9c5;
}

.access__table dt {
  font-weight: 700;
  color: var(--color-accent);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-brown);
  color: #fdf3e3;
  text-align: center;
  padding: 48px 24px 32px;
}

.footer__logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-yellow);
}

.footer__logo span {
  color: var(--color-accent);
}

.footer__copy {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .header {
    justify-content: center;
  }

  .header__nav {
    gap: 14px;
  }

  .hero {
    padding: 64px 20px 100px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .access__table > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
