/* Sound Cover Reviews — styles
   Typography mirrors soundcover.gr:
   - body / labels / nav : "Roboto Mono", 15px, 400
   - section headings     : "Poppins", 300, UPPERCASE
   - alt headings         : "Roboto", 400, UPPERCASE
   - display              : "Roboto Slab", 600
   - colors               : #000 ink, #333 soft ink, #F8F8F8 ground
*/

:root {
  --bg: #f8f8f8;
  --ink: #000000;
  --ink-soft: #333333;
  --line: rgba(0, 0, 0, 0.14);
  --header-bg: #000000;

  --font-body: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-alt: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Roboto Slab", Georgia, "Times New Roman", serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

/* ---------- a11y ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 16px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 40px;
}

/* logo */
.site-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.site-logo img {
  display: block;
  width: 260px;
  height: auto;
}

/* desktop nav */
.main-nav {
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  display: inline-block;
  padding: 6px 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-item:focus-visible {
  opacity: 0.55;
}

.nav-item.is-active {
  font-weight: 500;
}

/* language switch — single link, styled like a nav item (matches soundcover.gr) */
.nav-lang {
  display: flex;
  align-items: center;
}

.lang-toggle {
  margin: 0;
  border: 0;
  background: transparent;
  line-height: inherit;
  cursor: pointer;
}

.lang-toggle .lang-native {
  display: inline-block;
}

/* burger toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* mobile dropdown */
.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #000000;
}

.mobile-nav ul {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav li:last-child {
  border-bottom: 0;
}

.mobile-nav .nav-item {
  display: block;
  padding: 16px 48px;
  font-size: 14px;
}

.mobile-nav .lang-toggle {
  display: block;
  width: 100%;
  padding: 16px 48px;
  font-size: 14px;
  text-align: left;
}

/* ---------- reviews ---------- */
.reviews {
  padding: 88px 48px 104px;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-head {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reviews-head h1 {
  margin: 0 0 24px;
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.reviews-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-body);
}

.stars {
  color: #fbbc04;
  letter-spacing: 2px;
}

.stars--lg {
  font-size: 20px;
}

.rating-value {
  font-size: 20px;
  font-weight: 500;
}

.rating-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  list-style: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  /* Google-reviews typography inside the card */
  font-family: var(--font-alt);
}

.review-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-body {
  margin: 0;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  color: #3c4043;
}

.review-original {
  margin: 0;
  font-family: var(--font-alt);
  font-size: 13px;
  line-height: 1.5;
  color: #70757a;
}

.review-translated {
  margin: 2px 0 0;
  font-family: var(--font-alt);
  font-size: 12px;
  letter-spacing: normal;
  text-transform: none;
  color: #70757a;
}

/* hide the "original / translated" lines when the card is shown in its own language */
.review-card.is-native .review-original,
.review-card.is-native .review-translated {
  display: none;
}

/* additional reviews — rendered identically to the first 10;
   kept out of the page's Review schema until verified (see index.html) */

.review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #70757a;
}

.review-author {
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: #202124;
}

.review-src {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.g-mark {
  width: 14px;
  height: 14px;
}

.review-foot time {
  margin-left: auto;
}

.reviews-cta {
  margin: 48px 0 0;
  text-align: center;
}

.reviews-cta a {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-underline-offset: 4px;
}

/* ---------- footer ---------- */
.site-footer {
  background: #ffffff;
  color: var(--ink);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 48px 56px;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-about {
  flex: 1 1 320px;
  max-width: 380px;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-logo img {
  width: 296px;
  max-width: 100%;
  height: auto;
}

.footer-about p {
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.footer-about a {
  color: var(--ink);
  text-decoration: none;
}

.footer-about a:hover {
  text-decoration: underline;
}

.footer-heading {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 14px 0 18px;
  background: var(--line);
}

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

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.footer-contact ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact li + li {
  margin-top: 6px;
}

.footer-contact a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--ink);
}

.footer-bar {
  border-top: 1px solid var(--line);
}

.footer-bar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 22px 48px;
  list-style: none;
}

.footer-bar-list span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-bar-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bar-list a:hover {
  color: var(--ink);
}

.fynd-mark {
  width: 11px;
  height: auto;
  fill: currentColor;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .header-inner {
    padding: 6px 20px;
  }

  .site-logo img {
    width: 200px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav .nav-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reviews {
    padding: 64px 24px 80px;
  }

  .footer-main {
    padding: 56px 24px 40px;
    gap: 32px;
  }

  .footer-bar-list {
    padding: 20px 24px;
  }
}

@media (max-width: 640px) {
  .footer-col,
  .footer-about {
    flex: 1 1 100%;
    max-width: none;
  }
}
