/* ══════════════════════════════════════════════
   tojiki.de — Gemeinsames Stylesheet
   ══════════════════════════════════════════════ */

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

/* ── Basis ── */
body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #3a3a36;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   LOGO
   ══════════════════════════════════════════════ */
.logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #2a2a26;
  text-transform: lowercase;
  text-decoration: none;
  display: block;
}

.logo-wordmark:hover { color: #555; }

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

.logo-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: #666;
}

.logo-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa;
  flex-shrink: 0;
}

.logo-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #777;
}

.logo-tagline a {
  color: inherit;
  text-decoration: none;
}

.logo-tagline a:hover {
  color: #555;
}

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: #c8c4bc;
}

/* ── Links (global) ── */
a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover { color: #2a2a26; }

/* ══════════════════════════════════════════════
   STARTSEITE (index.html)
   ══════════════════════════════════════════════ */
body.page-home {
  overflow: hidden;
}

.bg-carousel {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.88) saturate(0.85);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

#bg-caption {
  transition: opacity 0.3s ease;
}

#bg-caption.fade {
  opacity: 0;
}

.stage {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: rgba(252, 250, 246, 0.97);
  padding: 56px 64px 48px;
  max-width: 580px;
  width: calc(100% - 48px);
  text-align: left;
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.card .logo {
  margin-bottom: 24px;
}

.slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 32px;
}

.card .divider {
  margin-bottom: 28px;
}

.season {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #5a6a5a;
  margin-bottom: 12px;
}

.coming {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
}

.card-footer {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.card-footer a {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #888;
  text-decoration: none;
}

.card-footer a:hover { color: #555; }

.card-footer .dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #bbb;
}

/* ══════════════════════════════════════════════
   CONTENT-SEITEN (impressum, datenschutz)
   ══════════════════════════════════════════════ */
body.page-content {
  background: #f0ece4;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.site-header {
  margin-bottom: 52px;
}

.site-header .logo-wordmark {
  font-size: 48px;
  margin-bottom: 10px;
}

.site-header .divider {
  margin-top: 28px;
}

.content {
  background: rgba(252, 250, 246, 0.97);
  padding: 48px 52px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #2a2a26;
  margin-bottom: 36px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #2a2a26;
  margin-top: 36px;
  margin-bottom: 12px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3a3a36;
  margin-top: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.85;
}

ul {
  margin: 0 0 14px 20px;
}

li {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  margin-bottom: 6px;
}

strong {
  font-weight: 400;
  color: #3a3a36;
}

.date {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #e0dcd4;
  font-size: 12px;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 0.08em;
}

.page-footer {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid #c8c4bc;
  display: flex;
  gap: 20px;
  align-items: center;
}

.page-footer a {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #888;
  text-decoration: none;
}

.page-footer a:hover { color: #555; }

.page-footer .dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #bbb;
}

/* ══════════════════════════════════════════════
   ANIMATION
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .card {
    padding: 44px 36px 40px;
  }
  .card .logo-wordmark {
    font-size: 56px;
  }
  .page {
    padding: 44px 16px 60px;
  }
  .content {
    padding: 36px 28px;
  }
  .site-header .logo-wordmark {
    font-size: 38px;
  }
  h1 { font-size: 26px; }
}
