/*
Theme Name: HomoGuru
Theme URI: https://homoguru.com
Author: HomoGuru
Description: Custom theme for HomoGuru gay site reviews
Version: 1.0.0
*/

:root {
  --bg: #0D0D0D;
  --card: #161616;
  --card2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #888;
  --pink: #FF0080;
  --pink2: #FF44AA;
  --gold: #FF9900;
  --gold2: #FFCC00;
  --rainbow: linear-gradient(90deg, #FF0066, #FF6600, #FFCC00, #00CC44, #0099FF, #9933FF);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
}

a { color: inherit; }

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

/* ── HEADER ── */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }

.logo-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.logo-homo {
  background: linear-gradient(90deg, #FF0080, #FF44AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-guru {
  background: linear-gradient(90deg, #FF9900, #FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav { display: flex; gap: 28px; align-items: center; }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}

.site-nav a:hover,
.site-nav a.current-menu-item { color: var(--pink2); }

/* ── FOOTER ── */
.footer-rainbow { height: 3px; background: var(--rainbow); }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo { font-size: 17px; font-weight: 900; }
.footer-logo .h { background: linear-gradient(90deg,#FF0080,#FF44AA); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-logo .g { background: linear-gradient(90deg,#FF9900,#FFCC00); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-note { font-size: 12px; color: var(--muted); }

/* ── SHARED COMPONENTS ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label.gold { color: var(--gold); }
.section-label.pink { color: var(--pink2); }

.rainbow-bar {
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
  opacity: .8;
}

.tag {
  background: #1f1f1f;
  border: 1px solid #2f2f2f;
  color: #aaa;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.tag.hot { border-color: #FF004440; background: #FF004411; color: #FF44AA; }
.tag.euro { border-color: #0099FF40; background: #0099FF11; color: #44AAFF; }
.tag.gold-tag { border-color: #FF990040; background: #FF990011; color: #FFAA33; }

.burst-icon { width: 20px; height: 20px; display: inline-block; }
.bursts { display: flex; gap: 3px; }

/* ── HOMEPAGE ── */
.hero {
  text-align: center;
  padding: 72px 40px 48px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span {
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
}

.hero .rainbow-bar {
  max-width: 180px;
  margin: 28px auto 0;
}

.home-section {
  padding: 52px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Deals */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.deal-card {
  background: linear-gradient(135deg, #1a1a00, #1a0d00);
  border: 1px solid #3a2a00;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s;
}

.deal-card:hover { transform: translateY(-2px); border-color: var(--gold2); }

.deal-badge {
  background: linear-gradient(135deg, #FF9900, #FFCC00);
  color: #000;
  font-weight: 900;
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.deal-info strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.deal-info span { font-size: 12px; color: var(--muted); }
.deal-arrow { color: var(--gold2); font-size: 17px; margin-left: auto; }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: #3a3a3a;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.card-top { padding: 24px 24px 18px; flex: 1; }

.card-name { font-size: 21px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 6px; }

.card-url { font-size: 12px; color: var(--muted); text-decoration: none; }
.card-url:hover { color: var(--pink2); }

.card-rating { margin: 14px 0 6px; }
.rating-num { font-size: 12px; font-weight: 700; color: var(--gold2); margin-bottom: 14px; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.card-teaser { font-size: 13px; color: #aaa; line-height: 1.6; }

.card-footer-btn { padding: 0 24px 22px; }

.review-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #FF0080, #FF44AA);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.review-btn:hover { opacity: .85; }

/* ── SINGLE REVIEW PAGE ── */
.review-hero {
  padding: 52px 40px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink2); }
.breadcrumb span { margin: 0 8px; }

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-left h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero-left .site-url { font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 16px; display: block; }
.hero-left .site-url:hover { color: var(--pink2); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }

.hero-rating { text-align: right; flex-shrink: 0; }
.hero-rating .bursts { justify-content: flex-end; margin-bottom: 6px; }
.hero-rating .rating-num { font-size: 15px; font-weight: 700; color: var(--gold2); margin-bottom: 12px; }

.visit-btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, #FF0080, #FF44AA);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.visit-btn-hero:hover { opacity: .85; }

.review-hero .rainbow-bar { margin: 32px 0 0; }

.editor-pick {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #FF0080, #9933FF);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* Review body layout */
.review-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.review-main { display: flex; flex-direction: column; gap: 32px; }

/* Model photos grid */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-slot {
  aspect-ratio: 3/4;
  background: var(--card2);
  border: 2px dashed #333;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .2s;
}

.photo-slot:hover { border-color: #555; }

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
}

.photo-icon { font-size: 28px; opacity: .3; }
.photo-model-name { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .5px; }
.photo-hint { font-size: 10px; color: #555; }

/* Review text */
.review-text { font-size: 15px; color: #ccc; line-height: 1.75; }
.review-text p + p { margin-top: 14px; }

/* Pros/cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pros-box, .cons-box {
  background: var(--card2);
  border-radius: 12px;
  padding: 16px 18px;
}
.pros-box { border-top: 3px solid #00CC44; }
.cons-box { border-top: 3px solid #FF3344; }

.pc-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.pros-box .pc-label { color: #00CC44; }
.cons-box .pc-label { color: #FF5566; }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pc-list li { font-size: 13px; color: #ccc; line-height: 1.45; padding-left: 16px; position: relative; }
.pc-list li::before { position: absolute; left: 0; }
.pros-box .pc-list li::before { content: '+'; color: #00CC44; font-weight: 700; }
.cons-box .pc-list li::before { content: '−'; color: #FF5566; font-weight: 700; }

/* Sidebar */
.review-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.stat-row { padding: 12px 0; border-bottom: 1px solid var(--border); }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }

.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.stat-value { font-size: 15px; font-weight: 700; color: var(--text); }
.stat-value.price { color: var(--gold2); }

.stars-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.star-chip { background: linear-gradient(135deg, #1a001a, #200020); border: 1px solid #440044; color: #FF44AA; font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 99px; }

.deal-box {
  background: linear-gradient(135deg, #1a1a00, #1a0d00);
  border: 1px solid #3a2a00;
  border-radius: 14px;
  padding: 18px 20px;
}

.deal-box .deal-badge { display: inline-block; margin-bottom: 10px; }
.deal-desc { font-size: 13px; color: #ccc; margin-bottom: 14px; line-height: 1.5; }

.deal-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #FF9900, #FFCC00);
  color: #000;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.deal-btn:hover { opacity: .85; }

.verdict-box {
  background: linear-gradient(135deg, #0d001a, #160028);
  border: 1px solid #440066;
  border-radius: 14px;
  padding: 20px;
}
.verdict-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #9933FF; margin-bottom: 8px; }
.verdict-text { font-size: 13px; color: #ccc; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  header.site-header { padding: 14px 20px; }
  .site-nav { display: none; }
  .hero, .home-section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 48px; }
  .review-hero { padding: 36px 20px 24px; }
  .review-body { grid-template-columns: 1fr; padding: 24px 20px 60px; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .proscons { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  footer.site-footer { padding: 20px; }
}
