/* ===== palette ===== */
:root {
  --hotel-ivory: #F9F6EF;
  --ballet-pink: #F3E1E8;
  --pomegranate: #7E2F42;
  --charcoal: #1A1A1C;
  --text-main: #2B2224;
}

/* ===== global ===== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #27272b, var(--charcoal));
  color: var(--text-main);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.6;
  cursor: url("cursor-pixel.png"), auto; /* upload your own cursor image with this name */
}

/* when hovering links, switch cursor */
a:hover {
  cursor: url("cursor-rose.png"), pointer; /* upload a rose/sparkle cursor with this name */
}

/* page layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26, 26, 28, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 246, 239, 0.25);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.logo-block {
  display: flex;
  flex-direction: column;
}

.logo-script {
  font-family: "Great Vibes", cursive;
  font-size: 1.9rem;
  color: var(--hotel-ivory);
  letter-spacing: 0.06em;
}

.logo-tagline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  text-transform: lowercase;
  color: rgba(243, 225, 232, 0.7);
  margin-top: 0.1rem;
}

.main-nav {
  display: flex;
  gap: 0.85rem;
}

.nav-link {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: rgba(249, 246, 239, 0.75);
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--ballet-pink);
  border-color: var(--ballet-pink);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--hotel-ivory);
  border-color: var(--pomegranate);
}

/* ===== content ===== */
.content {
  max-width: 780px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 1.5rem 3rem;
}

/* intro block at top */
.intro-card {
  background: linear-gradient(145deg, var(--hotel-ivory), var(--ballet-pink));
  border-radius: 18px;
  padding: 1.75rem 1.6rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(126, 47, 66, 0.08);
  margin-bottom: 2.25rem;
}

.intro-card h1 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--pomegranate);
}

.intro-card p {
  margin: 0;
  font-size: 1rem;
}

/* blog-style cards */
.post-card {
  background: rgba(249, 246, 239, 0.96);
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.25rem;
  margin-bottom: 1.6rem;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(243, 225, 232, 0.5);
  border-left: 4px solid rgba(126, 47, 66, 0.7);
}

.post-card h2 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--pomegranate);
}

.post-card p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}

.read-more {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  color: var(--pomegranate);
  padding-bottom: 1px;
  border-bottom: 1px dotted rgba(126, 47, 66, 0.6);
}

.read-more:hover {
  color: #541d2b;
  border-bottom-style: solid;
}

/* ===== footer ===== */
.site-footer {
  margin-top: auto;
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: lowercase;
  letter-spacing: 0.15em;
  color: rgba(249, 246, 239, 0.7);
}
