:root {
  --bg: #1c1f24;
  --ink: #ffffff;
  --ink-soft: #e0d9b7;
  --maxw: 760px;
}
body {
  font-family: 'Source Serif Pro', Georgia, serif;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}
main { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.25rem; }
header {
  display: flex;
  align-items: center;   /* vertical centering */
  gap: 1rem;             /* space between logo and text */
  margin-bottom: 2rem;
}

header img {
  width: 60px;
  border-radius: 50%;
  flex-shrink: 0;        /* stops logo from shrinking */
}

header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;     /* slightly smaller for balance */
  margin: 0;             /* remove weird spacing */
  line-height: 1.2;      /* tighter so it aligns nicely */
}
p.intro { font-size:1.1rem; margin-bottom:1.5rem; }
ul { list-style:none; padding:0; margin:0; }
li { margin:2rem 0; }
li a { text-decoration:none; color:var(--ink); }
li a .name { font-family:'Playfair Display', Georgia, serif; font-weight:700; font-size:1.3rem; }
li a .tagline { font-family:'Source Serif Pro', Georgia, serif; font-weight:400; font-style:italic; color:var(--ink-soft); font-size:1.05rem; margin-left:.5rem; }
li a:hover .name { text-decoration:underline; }
li .desc {
  display: block;
  margin-top: .3rem;
  font-size: .9rem;
  line-height: 1.55;
  font-weight: 300;
  color: #ddd;
}


/* --- NEW FOOTER --- */
footer { margin-top: 3rem; text-align: center; }

/* banner image ONLY (so it won't affect the divider) */
.footer-banner {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.footer-bar {
  background: #6A0320;
  color: #c6c6c6;
  max-width: 770px;
  margin: 0 auto;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: .9;
}

/* keep everything on one line and vertically centered */
.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;         /* spacing around the divider */
  margin: 0;
  white-space: nowrap;
}

/* the divider between webproject.jp and ラフェーラ */
.footer-divider {
  width: 28px;      /* adjust to taste (e.g., 24px/20px) */
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

.footer-bar a {
  color: #c6c6c6;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.footer-bar a:hover {
  font-weight: 700;      /* bold on hover */
  color: #ffffff;        /* turn white */
  text-decoration: none; /* no underline */
}
