/* ============================================================
   LYUBIMO-TARSENE.CSS – Любимо търсене page styles
   ============================================================ */

/* ─── Nav: uses styles.css — no page override needed ─── */

/* ─── PAGE LAYOUT ─── */
main { overflow: hidden; }


/* ============================================================
   HERO SECTION
   Full-height two-column split: text left, screenshots right
   ============================================================ */
.lt-hero {
  min-height: calc(100vh - 101px);
  background: #fff;
  display: flex;
  align-items: center;
}

.lt-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */
.lt-hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lt-hero-heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #121217;
  letter-spacing: -1.68px;
  line-height: 1.08;
}

.lt-hero-subtext {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #6a7282;
  line-height: 1.6;
  max-width: 442px;
}

/* ── Bullet list ─────────────────────────────────────────── */
.lt-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lt-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #364153;
  line-height: 1.55;
}

.lt-bullet-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-top: 1px;
}

/* ── Trust badge ─────────────────────────────────────────── */
.lt-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #364153;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: fit-content;
}

.lt-trust-icon {
  flex-shrink: 0;
  color: #2563eb;
  display: flex;
  align-items: center;
}

/* ── CTA buttons ─────────────────────────────────────────── */
.lt-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lt-btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.lt-btn-register:hover {
  background: #eff6ff;
}

.lt-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  background: #2563eb;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.lt-btn-login::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(30deg, #59b5f7 0%, #2563eb 68%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.lt-btn-login:hover::after { opacity: 1; }

/* ── Right column: screenshots ───────────────────────────── */
.lt-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-screenshots {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 520 / 420;
  margin: 0 auto;
}

.lt-screenshot {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: block;
}

/* Top screenshot — larger, positioned top-left */
.lt-screenshot-1 {
  width: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Bottom screenshot — slightly smaller, overlapping bottom-right */
.lt-screenshot-2 {
  width: 68%;
  bottom: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 12px 50px rgba(0,0,0,0.18);
}


/* ============================================================
   FOOTER
   Dark bg #1a1a2e, 4-column grid — same as kontakti/za-nas
   ============================================================ */
.lt-footer {
  background: #1a1a2e;
  padding: 80px 0 0;
}

.lt-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.lt-footer-brand .logo-new { filter: brightness(10); }

.lt-footer-tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 12px;
  opacity: 0.85;
}

.lt-footer-email {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #92d2ff;
  text-decoration: none;
  transition: color 0.2s;
}
.lt-footer-email:hover { color: #fff; }

.lt-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lt-footer-col-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.lt-footer-link {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #92d2ff;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.lt-footer-link:hover { color: #fff; }

.lt-footer-newsletter {
  display: flex;
  flex-direction: column;
}

.lt-footer-newsletter-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.lt-newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.lt-newsletter-input {
  flex: 1;
  background: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #869194;
  outline: none;
  min-width: 0;
}

.lt-newsletter-btn {
  background: #155dfc;
  border: 1px solid #a0d8ff;
  color: #fff;
  font-size: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.lt-newsletter-btn:hover { background: #0d4fd6; }

.lt-footer-searches-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.lt-footer-searches {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  color: #fff;
}

.lt-footer-searches-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #fff;
}

.lt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 60px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.lt-footer-bottom p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}


/* ============================================================
   DARK MODE
   ============================================================ */
body.dark-mode .lt-hero {
  background: var(--clr-bg);
}

body.dark-mode .lt-hero-heading {
  color: var(--clr-text);
}

body.dark-mode .lt-hero-subtext {
  color: var(--clr-text-dim);
}

body.dark-mode .lt-bullet {
  color: var(--clr-text-sec);
}

body.dark-mode .lt-bullet-icon {
  background: rgba(56, 182, 255, 0.12);
  color: var(--clr-accent);
}

body.dark-mode .lt-trust-badge {
  background: var(--clr-surface);
  border-color: var(--clr-border);
  color: var(--clr-text-sec);
}

body.dark-mode .lt-trust-icon { color: var(--clr-accent); }

body.dark-mode .lt-btn-register {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
body.dark-mode .lt-btn-register:hover {
  background: rgba(56, 182, 255, 0.1);
}

body.dark-mode .lt-btn-login {
  background: var(--clr-accent-blue);
}

/* Dark mode nav: uses styles.css */


/* ============================================================
   RESPONSIVE – TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .lt-hero-inner {
    gap: 48px;
    padding: 48px 40px;
  }
  .lt-hero-heading { font-size: 32px; }
}

@media (max-width: 900px) {
  .lt-hero { min-height: auto; }
  .lt-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 24px;
  }
  .lt-screenshots {
    max-width: 420px;
    aspect-ratio: 420 / 340;
  }
  .lt-footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 40px;
  }
  .lt-footer-searches-wrap { padding: 0 24px; }
  .lt-footer-bottom { padding: 20px 24px; }
}

@media (max-width: 640px) {
  .lt-hero-inner { padding: 40px 16px; }
  .lt-hero-heading { font-size: 26px; letter-spacing: -0.5px; }
  .lt-hero-subtext { font-size: 15px; }
  .lt-bullet { font-size: 15px; }
  .lt-trust-badge { font-size: 14px; }
  .lt-cta-row { flex-direction: column; align-items: flex-start; }
  .lt-btn-register,
  .lt-btn-login { width: 100%; justify-content: center; }
  .lt-screenshots {
    max-width: 100%;
    aspect-ratio: 3 / 2.4;
  }
  .lt-footer-inner {
    grid-template-columns: 1fr;
    padding: 0 16px 32px;
    gap: 32px;
  }
  .lt-footer-searches-wrap { padding: 0 16px; }
  .lt-footer-bottom { padding: 20px 16px; }
  .lt-newsletter-form {
    flex-direction: column;
    border-radius: 8px;
    overflow: visible;
    gap: 8px;
  }
  .lt-newsletter-input { border-radius: 6px; height: 42px; }
  .lt-newsletter-btn { border-radius: 6px; height: 42px; width: 100%; }
}

@media (max-width: 400px) {
  .lt-hero-heading { font-size: 22px; }
}
