@import url('https://fonts.googleapis.com/css2?family=Anton&family=Hanken+Grotesk:wght@400;500;600;700&family=Nunito+Sans:wght@400;700;800&display=swap');

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

:root {
  --teal: #14526E;
  --teal-dark: #0e3f56;
  --cream: #f4f2ed;
  --white: #ffffff;
  --dark: #232323;
  --mid: #4a4a4a;
  --divider: #d4d0c8;
  --footer-bg: #181818;
  --breadcrumb: #736F6F;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { text-decoration: none; }
.nav-logo img { height: 44px; display: block; }
.nav-links {
  display: flex; gap: 38px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links li { list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.73rem; font-weight: 600;
  background: var(--teal); color: white;
  padding: 10px 22px; border-radius: 5px;
  text-decoration: none; transition: background 0.18s; white-space: nowrap;
}
.nav-btn:hover { background: var(--teal-dark); }

/* BREADCRUMB */
.breadcrumb {
  padding: 20px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; }
.breadcrumb a, .breadcrumb span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--breadcrumb); text-decoration: none;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--breadcrumb); opacity: 0.5; letter-spacing: 0; }
.breadcrumb .current { font-weight: 800; color: var(--breadcrumb); }

/* MAIN LAYOUT */
.review-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
}

/* LEFT COLUMN */
.review-left { position: sticky; top: 90px; }

.book-cover, .film-poster {
  width: 100%;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  margin-bottom: 32px;
}

.meta-block { margin-bottom: 22px; }

.meta-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: -0.02em; color: var(--mid);
  margin-bottom: 3px;
}

.meta-value {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--dark);
}

.reviewed-by-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--mid);
  margin-bottom: 3px;
}

.reviewer-name {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--dark);
}

.meta-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 20px 0;
}

/* BUY / WATCH BUTTONS */
.buy-btn {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 6px;
  max-width: 200px;
}
.buy-btn:last-child { margin-bottom: 0; }
.buy-btn:hover { opacity: 0.85; }
.btn-amazon, .btn-goodreads { background: none; padding: 0; border: none; }
.btn-netflix { background: #E50914; color: white; }
.btn-prime { background: #00A8E0; color: white; }
.btn-hotstar { background: #1F80E0; color: white; }
.btn-generic { background: var(--teal); color: white; }

/* RIGHT COLUMN */
.book-title, .film-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 14px;
}

.book-author, .film-director {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 40px;
}

.review-body p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.8;
  color: var(--mid); margin-bottom: 1.4em;
}
.review-body p:last-child { margin-bottom: 0; }

/* FOOTER */
footer {
  background: var(--footer-bg);
  padding: 26px 48px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-name {
  font-family: 'Anton', sans-serif;
  font-size: 19px; letter-spacing: 0.05em;
  color: white; margin-bottom: 4px;
}
.footer-email {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.42);
  text-decoration: none;
}
.footer-email:hover { color: rgba(255,255,255,0.8); }
.footer-socials { display: flex; gap: 10px; align-items: center; }
.s-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: white; transition: opacity 0.18s;
}
.s-icon:hover { opacity: 0.78; }
.s-icon.ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.s-icon.fb { background: #1877f2; }
.s-icon.yt { background: #ff0000; }

/* BUY BUTTON IMAGES */
.buy-btn img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
}
.svg-btn-wrap { display: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 16px 20px; }
  .review-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px 20px 60px; }
  .review-left { position: static; }
  .book-cover, .film-poster { max-width: 200px; }
  .buy-btn { max-width: 140px !important; }
  .buy-btn img { max-width: 140px !important; }
  footer { padding: 22px 20px; flex-direction: column; align-items: flex-start; }
}

/* Hamburger menu styles loaded from hamburger.css */
