/* ===== Base ===== */

:root {
  --bg-main: #0b0a0d;
  --bg-secondary: #16141b;
  --accent-gold: #c19a6b;
  --accent-wine: #6b1e2f;
  --text-main: #e6e0da;
  --text-muted: #b1a7a0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b121e 0, #050307 55%);
  color: var(--text-main);
}

/* Containers */

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* ===== Header / Nav ===== */

.site-header {
  position: fixed;
	height: 90px;
	overflow: hidden;
  top: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5, 3, 7, 0.96), rgba(5, 3, 7, 0.8), transparent);
  backdrop-filter: blur(10px);
}

.site-header img{
	height: 150px;
	width: auto;
	margin-top: 5px;
}

.nav-container {
	padding: 0; 
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
}

.logo-main {
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-main);
}

/* ===== Hamburger Menu ===== */

/* Mobile hamburger button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
  z-index: 60;

  /* add these */
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;

  /* remove margin completely */
  margin: 0;
}


/* Drawer and overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 45;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: var(--bg-secondary);
  border-right: 1px solid rgba(193, 154, 107, 0.18);
  box-shadow: 18px 0 45px rgba(0, 0, 0, 0.65);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 55;
  padding: 1rem;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0 1rem;
  border-bottom: 1px solid rgba(193, 154, 107, 0.14);
  margin-bottom: 1rem;
}

.drawer-title {
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

.drawer-close {
  background: transparent;
  border: 0;
  color: var(--accent-gold);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-link {
  text-decoration: none;
  color: var(--text-main);
  padding: 0.75rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(193, 154, 107, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.drawer-link:hover {
  border-color: rgba(193, 154, 107, 0.3);
}

/* Open state */
body.menu-open .mobile-drawer {
  transform: translateX(0);
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Phone view only */
@media (max-width: 600px) {
  .menu-toggle {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    left: 12px;
    top: 40%;
    transform: translateY(-50%);
  }
}

/* ===== Hero ===== */

.hero {
  position: relative;
  height: 100vh;
  background-image:
    url("Header Image.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  text-align: center;
  margin-top: 3rem; /* to offset fixed header */
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0;
}

.hero-tagline {
  margin: 1.5rem auto 2.5rem;
  max-width: 28rem;
  font-size: 1rem;
  color: var(--text-main);
  font-style: italic;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.85rem 2.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.btn-primary {
  background: var(--accent-wine);
  border-color: var(--accent-wine);
  color: #f5ece3;
  box-shadow: 0 0 28px rgba(107, 30, 47, 0.45);
}

.btn-updates {
  background: var(--accent-wine);
  border-color: var(--accent-wine);
  color: #f5ece3;
  box-shadow: 0 0 28px rgba(107, 30, 47, 0.45);
	margin-top: 1rem;
}

.btn-updates:hover {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 26px rgba(193, 154, 107, 0.4);
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 26px rgba(193, 154, 107, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-wine);
  border-color: var(--accent-wine);
  color: #f5ece3;
}

/* ===== Disclaimer ===== */
.disclaimer {
	margin-top: 1rem;
	font-size: 12px;
}
/* ===== Sections ===== */

.section {
  padding: 4.5rem 0;
  background: linear-gradient(to bottom, rgba(11, 10, 13, 0.98), #050307);
}

.section:nth-of-type(2n) {
  background: radial-gradient(circle at top, #151019, #050307 65%);
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 3rem;
	margin-top: 1.5rem;
  text-align: center;
}

/* ===== Featured Reviews (Home Page Only) ===== */

.featured .card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.featured .book-card {
  background: var(--bg-secondary);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(193, 154, 107, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.65);
}

.featured .book-cover {
  height: 180px;
  background: radial-gradient(circle at top, #3a1a24, #080509 68%);
  overflow: hidden;
}

.featured .book-cover img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.featured .book-info {
  padding: 1.4rem 1.5rem 1.3rem;
}

.featured .book-title {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.featured .book-meta {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.featured .book-blurb {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.featured .card-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  text-decoration: none;
}

.featured .card-link:hover {
  color: #f1dcc0;
}


/* ===== Categories ===== */

.categories {
	margin-top:1.5rem;
  border-top: 1px solid rgba(193, 154, 107, 0.12);
  border-bottom: 1px solid rgba(193, 154, 107, 0.12);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(193, 154, 107, 0.25);
  text-decoration: none;
  color: var(--text-main);
  background: radial-gradient(circle at top, #151019, #050307 75%);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.8);
  border-color: var(--accent-gold);
}

.category-icon {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--accent-gold);
}

.category-name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.categories-container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}
/* ===== Latest Reviews + About ===== */

.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.latest-list .section-title {
  text-align: left;
}

.latest-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(193, 154, 107, 0.15);
}

.latest-cover {
  width: 80px;
  height: 110px;
overflow: hidden;
  background: radial-gradient(circle at top, #3a1a24, #080509 70%);
  border-radius: 6px;
}

.latest-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 6px;
	
}

.latest-title {
  margin: 0 0 0.25rem;
  font-family: "Playfair Display", serif;
}

.latest-meta {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.latest-text {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.spice {
  margin: 0;
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.about-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(193, 154, 107, 0.18);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-image {
  height: 180px;
  background-image: linear-gradient(to bottom, rgba(5, 3, 7, 0.2), #050307),
    url("Red Dress.JPG");
  background-size: cover;
  background-position: center;
}

.about-content {
  padding: 1.6rem 1.7rem 1.7rem;
}

.about-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--accent-gold);
}

.about-text {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
}

/* ===== Footer ===== */

.site-footer {
  border-top: 1px solid rgba(193, 154, 107, 0.2);
  padding: 1.5rem 0 2rem;
  background: #050307;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-logo {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .featured .card-row {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* easiest for now; you can add a burger later */
  }

  .nav-container {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .featured .card-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: 0.18em;
  }

  .hero-tagline {
    padding: 0 1rem;
  }

  .latest-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== Single Review Pages ===== */

.review-container {
  width: min(1100px, 100% - 3rem);
  margin: 8rem auto 5rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

.review-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-cover {
  width: 70%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.review-details {
  background: var(--bg-secondary);
  padding: 1.5rem;
	padding-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(193,154,107,0.2);
}

.detail-title {
  margin-top: 0;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.review-right {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.review-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin: 0;
}

.review-section h2 {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.review-section p {
  line-height: 1.7;
  color: var(--text-main);
}

blockquote {
  margin: 0;
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--accent-gold);
  background: rgba(255,255,255,0.03);
  font-style: italic;
  line-height: 1.6;
  border-radius: 6px;
}

.back-link {
  text-decoration: none;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.back-link:hover {
  color: #f1dcc0;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .review-container {
    grid-template-columns: 1fr;
  }

  .review-left {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .review-left {
    width: 100%;
  }

  .review-title {
    font-size: 2rem;
  }
}

/* ===== Categories Page ===== */

.categories-header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.categories-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  margin: 0;
}

.categories-subtitle {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.categories-grid-container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.category-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(193, 154, 107, 0.2);
  border-radius: 14px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  cursor: pointer;
}

.category-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.category-icon {
  display: block;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.category-item h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.15em;
  color: var(--text-main);
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .categories-grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .categories-grid-container {
    grid-template-columns: 1fr;
  }
}
/* ===== TBR Page ===== */

.tbr-header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.tbr-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  margin: 0;
}

.tbr-subtitle {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.tbr-grid-container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.tbr-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(193, 154, 107, 0.15);
  border-radius: 14px;
  padding: 1.7rem 1.4rem;
  text-align: center;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.65);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.tbr-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8);
}

.tbr-cover {
  width: 100%;
  height: 180px;
  background: radial-gradient(circle at top, #3a1a24, #080509 70%);
  border-radius: 10px;
  margin-bottom: 1.2rem;
}

.tbr-cover img {
	height: 180px;
	width:auto;
}

.tbr-book-title {
  font-family: "Playfair Display", serif;
  color: var(--text-main);
  font-size: 1.25rem;
  margin: 0.4rem 0;
}

.tbr-author {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.2rem 0 1rem;
}

.tbr-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tbr-tag {
  background: rgba(193, 154, 107, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tbr-status {
  margin-top: 0.6rem;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .tbr-grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .tbr-grid-container {
    grid-template-columns: 1fr;
  }
}
/* ===== About Page ===== */

.about-header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  margin: 0;
}

.about-subtitle {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Layout */

.about-layout {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 3rem;
}

/* Left side */

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-photo {
  height: 380px;
  border-radius: 14px;
  background-image: linear-gradient(to bottom, rgba(5, 3, 7, 0.4), #050307),
    url("Black and White About Image.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

/* Quick facts card */

.about-bio-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(193,154,107,0.18);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.about-card-title {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  color: var(--text-main);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* Right side */

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-section-title {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.about-right p {
  line-height: 1.7;
  color: var(--text-main);
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 300px;
  }
}
/* ===== Contact Page ===== */

.contact-header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  margin: 0;
}

.contact-subtitle {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Layout */

.contact-layout {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto 11rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Left side */

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(193,154,107,0.18);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.contact-card-title {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.email-contact-card-title {
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
	margin-top: 3rem;
}
/* Right side (Form) */

.contact-right {
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(193,154,107,0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(193,154,107,0.2);
  background: #0d0c0f;
  color: var(--text-main);
  font-size: 0.9rem;
	resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* Responsive */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
/* ===== Review Page ===== */

.book-header {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

.book-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  margin: 0;
}

.book-subtitle {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.book-grid-container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.book-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(193, 154, 107, 0.15);
  border-radius: 14px;
  padding: 1.7rem 1.4rem;
  text-align: center;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.65);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8);
}

.book-cover {
  width: 100%;
  height: 180px;
  background: radial-gradient(circle at top, #3a1a24, #080509 70%);
  border-radius: 10px;
  margin-bottom: 1.2rem;
}

.book-cover img {
	height: 180px;
	width:auto;
}
.book-review-title {
  font-family: "Playfair Display", serif;
  color: var(--text-main);
  font-size: 1.25rem;
  margin: 0.4rem 0;
}

.book-author {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.2rem 0 1rem;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.book-tag {
  background: rgba(193, 154, 107, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .book-grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .book-grid-container {
    grid-template-columns: 1fr;
  }
}

.tw-box{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  padding:12px 14px;
  margin:10px 0 16px;
}
.tw-header{
  font-size:.95rem;
  margin-bottom:6px;
  letter-spacing:.2px;
}
.tw-text{
  margin:0;
  opacity:.9;
  opacity:.9;
  line-height:1.35;
  font-size:.95rem;
}

.thoughts-teaser{
  margin-top:2px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.12);
}
.thoughts-line{
	text-align: center;
	  margin-top: 0;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.01rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.thoughts-link{
  font-size:1rem;
  text-decoration:underline;
  opacity:.85;
	text-align: center;
}
.thoughts-link:hover{
  opacity:1;
}

.comments-wrap{
	grid-column: 1 / -1;
  /*margin:26px 0 10px;*/
}

.comments-card{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:18px 18px 16px;
	width: 100%;
}

.comments-head h2{
  margin:0 0 6px;
  font-size:1.25rem;
  letter-spacing:.2px;
	color: var(--accent-gold);
	font-family: "Playfair Display", serif;
}

.comments-sub{
  margin:0 0 14px;
  opacity:.85;
  line-height:1.4;
  font-size:.95rem;
}

.comments-prompts{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.prompt-chip{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 12px;
  font-size:.9rem;
  cursor:pointer;
  opacity:.9;
	color: white;
}

.prompt-chip:hover{
  opacity:1;
}

.comments-body{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:14px;
}

.email-signup {
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

.email-signup input {
	flex: 1;
	padding: 12px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(0,0,0,0.25);
	color: inherit;
}

.email-signup button {
	padding: 12px 18px;
	border-radius: 999px;
}