/*
Theme Name: Luxury Island Stay Reviews
Theme URI: https://luxuryislandstay.rest
Description: Magazine layout with a gradient-mesh glow and typographic (image-free) cards for luxury island accommodation reviews.
Style ID: e0f864
Version: 1.0.0
Text Domain: luxury-island-stay-r
*/

:root {
  --bg: #f8f6f7;
  --bg-alt: #efebec;
  --bg-deep: #e5e0e1;
  --text: #261d1e;
  --text-muted: #7b6b6d;
  --accent: #b1253a;
  --border: #e4ddde;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Gradient Mesh 柔和光斑背景 */
.e0f864-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(640px 440px at 12% 6%, rgba(177,37,58,0.10), transparent 62%),
    radial-gradient(540px 380px at 88% 16%, rgba(177,37,58,0.07), transparent 62%),
    radial-gradient(720px 520px at 50% 96%, rgba(177,37,58,0.08), transparent 65%),
    radial-gradient(480px 360px at 30% 55%, rgba(177,37,58,0.05), transparent 60%);
}

a { color: var(--text); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* 半透明浮层卡片（浮于渐变光斑之上） */
.e0f864-glass {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* ===== 布局容器 ===== */
.e0f864-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.e0f864-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,246,247,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.e0f864-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.e0f864-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.e0f864-logo a:hover { color: var(--accent); }
.e0f864-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}
.e0f864-nav li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.e0f864-nav li a:hover,
.e0f864-nav li.current-menu-item a { color: var(--accent); }

.e0f864-subscribe {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.e0f864-subscribe:hover { opacity: 0.9; color: #fff; }

/* ===== 卡片 D（无图纯文本 Typographic Card） ===== */
.e0f864-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.e0f864-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(177,37,58,0.08);
}
.e0f864-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 10px;
}
.e0f864-card-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.e0f864-card-title a:hover { color: var(--accent); }
.e0f864-card-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}
.e0f864-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.e0f864-card-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.e0f864-card-author { font-weight: 600; color: var(--text); }
.e0f864-card-dot { color: var(--text-muted); }

/* ===== 归档 / 列表页 ===== */
.e0f864-archive-head { padding: 48px 0 28px; }
.e0f864-archive-head h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.e0f864-archive-head p { color: var(--text-muted); margin-top: 8px; }

.e0f864-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 56px;
}

/* ===== 单篇文章页 ===== */
.e0f864-single {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.e0f864-single-cat {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.e0f864-single-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.e0f864-single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.e0f864-single-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.e0f864-single-meta-text { line-height: 1.4; }
.e0f864-single-author { font-weight: 600; font-size: 14.5px; }
.e0f864-single-sub { color: var(--text-muted); font-size: 13px; }

.e0f864-single-thumb {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.e0f864-single-thumb img { width: 100%; }

.e0f864-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}
.e0f864-content p { margin-bottom: 20px; }
.e0f864-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}
.e0f864-content h3 { font-size: 20px; margin: 28px 0 12px; }
.e0f864-content ul, .e0f864-content ol { margin: 0 0 22px 24px; }
.e0f864-content li { margin-bottom: 8px; }
.e0f864-content a { color: var(--accent); border-bottom: 1px solid rgba(177,37,58,0.35); }
.e0f864-content a:hover { border-bottom-color: var(--accent); }

/* ===== 通用页面 ===== */
.e0f864-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.e0f864-page h1 { font-size: 34px; font-weight: 800; margin-bottom: 24px; }

/* ===== 404 ===== */
.e0f864-404 { text-align: center; padding: 100px 24px; }
.e0f864-404 h1 { font-size: 90px; font-weight: 800; color: var(--accent); }
.e0f864-404 p { color: var(--text-muted); margin: 16px 0 28px; }
.e0f864-404 a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
}
.e0f864-404 a:hover { opacity: 0.9; color: #fff; }

/* ===== 搜索表单 ===== */
.e0f864-searchform { display: flex; gap: 8px; }
.e0f864-searchform input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.e0f864-searchform button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Footer ===== */
.e0f864-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  margin-top: 48px;
}
.e0f864-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 52px 24px 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.e0f864-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.e0f864-footer-col p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.e0f864-footer-col ul { list-style: none; }
.e0f864-footer-col ul li { margin-bottom: 9px; }
.e0f864-footer-col ul li a { color: var(--text-muted); font-size: 14px; }
.e0f864-footer-col ul li a:hover { color: var(--accent); }

.e0f864-social { display: flex; gap: 10px; }
.e0f864-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.e0f864-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.e0f864-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.e0f864-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.e0f864-footer-copy { color: var(--text-muted); font-size: 13px; }
.e0f864-footer-bottom a { color: var(--text-muted); font-size: 13px; margin-left: 16px; }
.e0f864-footer-bottom a:hover { color: var(--accent); }

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .e0f864-grid { grid-template-columns: repeat(2, 1fr); }
  .e0f864-footer-grid { grid-template-columns: 1fr 1fr; }
  .e0f864-header-inner { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .e0f864-grid { grid-template-columns: 1fr; }
  .e0f864-footer-grid { grid-template-columns: 1fr; }
  .e0f864-single-title { font-size: 28px; }
  .e0f864-logo { font-size: 20px; }
}
