/* =====================================================
   destinations.css — Maris Vlora Boat Tours
   All destination detail pages. Requires shared.css.
   ===================================================== */

/* ── HERO ── */
.dest-hero {
  position: relative;
  height: auto;
  overflow: hidden;
}

.dest-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.dest-breadcrumb {
  margin-bottom: 16px;
}

.dest-breadcrumb a,
.dest-breadcrumb span {
  color: rgba(255,255,255,0.75) !important;
}

.dest-breadcrumb span[aria-current] {
  color: rgba(255,255,255,0.95) !important;
}

.dest-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}

.dest-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 560px;
}

/* ── QUICK FACTS BAR ── */
.dest-facts {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}

.dest-facts-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}

.dest-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-right: 1px solid var(--gray-100);
  flex: 1;
  min-width: 180px;
}

.dest-fact:last-child {
  border-right: none;
}

.dest-fact svg {
  color: var(--teal);
  flex-shrink: 0;
}

.dest-fact strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.dest-fact span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ── BODY LAYOUT ── */
.dest-body {
  background: var(--cream);
  padding: 56px 0 72px;
}

.dest-body-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── CONTENT (left) ── */
.dest-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dest-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.dest-section:last-child {
  margin-bottom: 0;
}

.dest-section h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}

.dest-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
}

.dest-section p:last-child {
  margin-bottom: 0;
}

.dest-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur) var(--ease);
}

.dest-section a:hover {
  color: var(--teal-mid);
}

/* Facts grid inside section */
.dest-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}

.dest-facts-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid var(--gray-100);
}

.dest-facts-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  margin-bottom: 6px;
}

.dest-facts-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ inside destination page */
.dest-faq .faq-list {
  margin-top: 4px;
}

.dest-faq .faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.dest-faq .faq-item:last-child {
  border-bottom: none;
}

.dest-faq .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color var(--dur) var(--ease);
}

.dest-faq .faq-q:hover {
  color: var(--orange);
}

.dest-faq .faq-chev {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
  color: var(--text-muted);
}

.dest-faq .faq-q[aria-expanded="true"] .faq-chev {
  transform: rotate(180deg);
}

.dest-faq .faq-a {
  padding: 0 0 14px;
}

.dest-faq .faq-a p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── SIDEBAR (right) ── */
.dest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.dest-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.dest-sidebar-card--info {
  background: var(--teal-light);
}

.dest-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 6px;
}

.dest-sidebar-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.3;
}

.dest-sidebar-card--info h3 {
  color: var(--navy);
}

.dest-sidebar-card--info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Tour items in sidebar */
.dest-tour-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  margin-bottom: 10px;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.dest-tour-item:last-of-type {
  margin-bottom: 18px;
}

.dest-tour-item:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.dest-tour-item:hover svg {
  color: var(--orange);
}

.dest-tour-item svg {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}

.dest-tour-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dest-tour-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.dest-tour-tag--evening {
  color: var(--sunset-dark);
  background: var(--sunset-light);
}

.dest-tour-item-body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.dest-tour-item-body span {
  font-size: 12px;
  color: var(--text-muted);
}

.dest-sidebar-cta {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.dest-map-btn {
  width: 100%;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-body-inner {
    grid-template-columns: 1fr;
  }

  .dest-sidebar {
    position: static;
    top: auto;
  }

  .dest-facts-inner {
    gap: 0;
  }

  .dest-fact {
    min-width: 160px;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .dest-hero {
    min-height: 420px;
    height: auto;
  }

  .dest-hero-overlay {
    padding-bottom: 32px;
  }

  .dest-facts-inner {
    flex-direction: column;
  }

  .dest-fact {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding: 14px 16px;
  }

  .dest-fact:last-child {
    border-bottom: none;
  }

  .dest-body {
    padding: 32px 0 48px;
  }

  .dest-section {
    padding: 24px 20px;
  }

  .dest-facts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dest-hero {
    min-height: 340px;
    height: auto;
  }

  .dest-hero-title {
    letter-spacing: -1px;
  }
}

/* Notice card variant (seasonal warning etc.) */
.dest-sidebar-card--notice {
  background: var(--sunset-light);
  border: 1.5px solid var(--sunset);
}

.dest-sidebar-card--notice h3 {
  color: var(--orange-dark);  /* #9A3412 — passes AA on #FFF8ED */
}

.dest-sidebar-card--notice p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.dest-hero-overlay {
  padding-top: calc(var(--nav-h) + 24px);
}

@media (max-width: 768px) {
  .dest-hero-overlay {
    padding-top: calc(var(--nav-h) + 16px);
  }
}

@media (max-width: 480px) {
  .dest-hero-overlay {
    padding-top: calc(var(--nav-h) + 12px);
  }
}
