/* ============================================
   THE KILT ROUTE :: Bio page v2
   Ordem: Logo > WhatsApp > Links > Tripadvisor > Tour covers
   Mobile-first robusto. Sem overflow. Pronto pra HTML print.
   ============================================ */

:root {
  --green-deep: #1F3829;
  --green: #2F4B3A;
  --green-mid: #3A5947;
  --green-soft: #466b56;
  --cream: #EDDDA8;
  --cream-soft: #F5E9C2;
  --cream-deep: #D9C485;
  --gold: #C8A24A;
  --ink: #1A2A20;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.18);
  --shadow-card: 0 12px 28px rgba(0,0,0,.22);
  --radius: 14px;
  --radius-lg: 18px;
}

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

html, body {
  background: var(--green);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body { position: relative; overflow-x: hidden; }

.bg-vignette {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(70, 107, 86, .35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, rgba(15, 30, 22, .55) 0%, transparent 60%),
    linear-gradient(180deg, #2F4B3A 0%, #243d2f 100%);
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(237, 221, 168, .05) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(237, 221, 168, .04) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   CONTAINER PRINCIPAL — Mobile-first
   ============================================ */

.bio {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 18px 50px;
  position: relative;
  z-index: 1;
}

/* ============================================
   HEADER (LOGO REAL + TAGLINE)
   ============================================ */

.header { text-align: center; padding: 8px 0 22px; }

.logo {
  width: 180px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
}

.tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(237, 221, 168, .85);
  font-weight: 300;
  margin: 0 auto 14px;
  max-width: 320px;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-deep);
  padding: 6px 14px;
  border: 1px solid rgba(237, 221, 168, .25);
  border-radius: 999px;
  background: rgba(0,0,0,.12);
}

/* ============================================
   WHATSAPP CARD (sem telefone)
   ============================================ */

.card--whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--green-deep);
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card--whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.4) 0%, transparent 40%);
  pointer-events: none;
}

.card--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}

.card__icon {
  width: 42px;
  height: 42px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.card__icon svg { width: 24px; height: 24px; }

.card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.card__label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
}

.card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: .2px;
}

.card__arrow {
  font-size: 22px;
  color: var(--green-deep);
  font-weight: 300;
  margin-left: 4px;
  flex-shrink: 0;
}

/* ============================================
   LINK CARDS (Site, Insta, FB, E-mail)
   ============================================ */

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(237, 221, 168, .22);
  border-radius: var(--radius);
  padding: 13px 16px;
  text-decoration: none;
  color: var(--cream);
  margin-bottom: 8px;
  transition: all .25s ease;
}

.link-card:hover {
  background: rgba(237, 221, 168, .07);
  border-color: rgba(237, 221, 168, .5);
  transform: translateX(2px);
}

.link-card__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--cream);
  opacity: .85;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-card__icon svg { width: 22px; height: 22px; }

.link-card__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1px;
  min-width: 0;
}

.link-card__text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .3px;
}

.link-card__text em {
  font-style: normal;
  font-size: 12px;
  color: rgba(237, 221, 168, .6);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-card__arrow {
  font-size: 18px;
  color: var(--cream-deep);
  opacity: .65;
  flex-shrink: 0;
}

/* ============================================
   TRIPADVISOR BADGE
   ============================================ */

.badge-tripadvisor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 4px;
  padding: 12px 16px;
  background: rgba(0,0,0,.18);
  border-radius: var(--radius);
  border: 1px solid rgba(52, 224, 161, .2);
}

.badge-tripadvisor__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.badge-tripadvisor__icon svg { width: 32px; height: 32px; }

.badge-tripadvisor__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.badge-tripadvisor__stars {
  color: #34E0A1;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1;
}

.badge-tripadvisor__text { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }

.badge-tripadvisor__text strong {
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.badge-tripadvisor__text span {
  font-size: 11.5px;
  color: rgba(237, 221, 168, .7);
}

/* ============================================
   DIVIDER ENTRE SEÇÕES
   ============================================ */

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 4px 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 221, 168, .3), transparent);
}

.divider span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-deep);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ============================================
   TOUR COVERS — full-width image cards
   Imagem cobre o card todo + overlay escuro + texto centralizado/baseline
   ============================================ */

.tour-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 130px;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  background-color: var(--green-deep);
  border: 1px solid rgba(237, 221, 168, .18);
  transition: transform .25s ease, border-color .25s;
}

.tour-cover:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 221, 168, .45);
}

.tour-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 56, 41, .35) 0%, rgba(15, 28, 20, .85) 100%);
  z-index: 1;
}

.tour-cover__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-cover__label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream-deep);
  font-weight: 600;
  margin-bottom: 2px;
}

.tour-cover__title {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: .3px;
}

.tour-cover__cta {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .85;
}

.tour-cover__cta span { transition: transform .2s; display: inline-block; }
.tour-cover:hover .tour-cover__cta span { transform: translateX(4px); }

/* Placeholders evocativos (gradients) enquanto fotos reais não chegam */
.tour-cover.edinburgh {
  background-image:
    linear-gradient(135deg, rgba(160, 110, 60, .55) 0%, rgba(40, 35, 25, .85) 70%),
    linear-gradient(180deg, #8b6a3a 0%, #5c4a2e 60%, #2c2419 100%);
}
.tour-cover.outlander {
  background-image:
    linear-gradient(135deg, rgba(90, 90, 75, .55) 0%, rgba(25, 28, 22, .85) 70%),
    linear-gradient(180deg, #5a5a48 0%, #3a3d2e 60%, #1f211a 100%);
}
.tour-cover.harrypotter {
  background-image:
    linear-gradient(135deg, rgba(120, 80, 50, .55) 0%, rgba(20, 14, 8, .9) 70%),
    linear-gradient(180deg, #7a5a3a 0%, #4f3b25 50%, #221a10 100%);
}
.tour-cover.lochness {
  background-image:
    linear-gradient(135deg, rgba(70, 95, 110, .55) 0%, rgba(15, 22, 28, .9) 70%),
    linear-gradient(180deg, #4a5e6e 0%, #2e3a44 60%, #1a2025 100%);
}
.tour-cover.skye {
  background-image:
    linear-gradient(135deg, rgba(105, 120, 95, .55) 0%, rgba(20, 26, 20, .9) 70%),
    linear-gradient(180deg, #6b7560 0%, #3f4a3a 50%, #1f261d 100%);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  text-align: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(237, 221, 168, .15);
}

.footer p {
  font-size: 11.5px;
  color: rgba(237, 221, 168, .55);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer__small {
  font-size: 10.5px !important;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(237, 221, 168, .4) !important;
}

/* ============================================
   RESPONSIVO — desktop polish
   ============================================ */

@media (min-width: 600px) {
  .bio { padding-top: 44px; padding-bottom: 60px; }
  .logo { width: 200px; }
  .tour-cover { height: 150px; }
  .tour-cover__title { font-size: 22px; }
}

/* Print-friendly safety */
@media print {
  .bg-vignette, .bg-overlay { position: absolute; }
}
