:root {
  --pb-blue: #2a5373;
  --pb-red: #c9583d;
  --pb-dark: #142c40;
  --pb-soft: #f5f8fb;
}

body {
  background: var(--pb-soft);
  color: #1f2937;
}

.brand-padova {
  color: var(--pb-blue);
}

.brand-bus {
  color: var(--pb-red);
}

.discover-navbar {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.discover-hero,
.destination-detail-hero {
  color: white;
  padding: 86px 0;
  background:
    linear-gradient(120deg, rgba(42, 83, 115, .96), rgba(201, 88, 61, .82));
}

.destination-detail-hero {
  background-size: cover;
  background-position: center;
}

.discover-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  color: white;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.discover-hero h1,
.destination-detail-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  max-width: 860px;
  margin-bottom: 20px;
}

.discover-hero p,
.destination-detail-hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 760px;
  opacity: .95;
}

.discover-hero-card {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: white;
  color: var(--pb-blue);
  font-size: 32px;
  margin-bottom: 22px;
}

.destination-list-section,
.destination-detail-section,
.places-section {
  padding: 64px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section-heading.text-start {
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: inline-block;
  color: var(--pb-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-weight: 900;
  color: var(--pb-dark);
  font-size: clamp(28px, 4vw, 44px);
}

.section-heading p {
  color: #64748b;
  font-size: 17px;
}

.destination-card,
.place-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.destination-card:hover,
.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .11);
}

.destination-card-image {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  text-decoration: none;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.destination-card:hover .destination-card-image img {
  transform: scale(1.06);
}

.destination-card-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  background: white;
  color: var(--pb-blue);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.destination-card-body {
  padding: 24px;
}

.destination-meta {
  color: var(--pb-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.destination-card h3 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 12px;
}

.destination-card h3 a {
  color: var(--pb-dark);
  text-decoration: none;
}

.destination-card p {
  color: #64748b;
  line-height: 1.6;
}

.destination-transport {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.destination-transport span {
  background: #eef5fa;
  color: var(--pb-blue);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.destination-link {
  color: var(--pb-red);
  font-weight: 900;
  text-decoration: none;
}

.destination-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.destination-breadcrumb a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.destination-breadcrumb span {
  color: rgba(255, 255, 255, .76);
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.transport-box {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
  border: 1px solid rgba(148, 163, 184, .18);
}

.transport-box span {
  display: block;
  color: var(--pb-red);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.transport-box strong {
  color: var(--pb-dark);
  font-size: 20px;
}

.place-card {
  padding: 26px;
}

.place-card span {
  display: inline-block;
  color: var(--pb-red);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.place-card h3 {
  color: var(--pb-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.place-card p {
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0;
}

.destination-cta {
  margin-top: 56px;
  padding: 40px;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(42, 83, 115, .96), rgba(201, 88, 61, .86));
  color: white;
  text-align: center;
}

.destination-cta h2 {
  font-weight: 900;
}

.destination-cta p {
  opacity: .9;
  font-size: 17px;
}

.discover-footer {
  background: white;
  border-top: 1px solid rgba(148, 163, 184, .2);
  padding: 32px 0;
}
.coming-soon-box {
    margin-top: 48px;
    padding: 28px 30px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(42, 83, 115, 0.08), rgba(201, 88, 61, 0.10)),
        #ffffff;
    border: 1px solid rgba(42, 83, 115, 0.12);
    box-shadow: 0 16px 40px rgba(20, 44, 64, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.coming-soon-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #2a5373;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: 0 0 58px;
    box-shadow: 0 10px 24px rgba(42, 83, 115, 0.22);
}

.coming-soon-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: #c9583d;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coming-soon-content h2 {
    margin: 0 0 10px;
    color: #142c40;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.coming-soon-content p {
    margin: 0;
    color: #5c7286;
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
}

@media (max-width: 768px) {
    .coming-soon-box {
        padding: 24px 22px;
        flex-direction: column;
        gap: 16px;
    }

    .coming-soon-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 24px;
    }
}

@media (max-width: 991px) {
  .discover-hero,
  .destination-detail-hero {
    padding: 58px 0;
  }

  .transport-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card-coming-soon {
    border: 1px dashed rgba(42, 83, 115, 0.28);
    background:
        linear-gradient(135deg, rgba(42, 83, 115, 0.04), rgba(201, 88, 61, 0.06)),
        #ffffff;
}

.destination-card-coming-soon-image {
    height: 220px;
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 88, 61, 0.18), transparent 32%),
        radial-gradient(circle at 80% 30%, rgba(42, 83, 115, 0.18), transparent 30%),
        linear-gradient(135deg, #f5f8fb, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card-coming-soon-image img {
    display: none;
}

.coming-soon-pattern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon {
    width: 86px;
    height: 86px;
    border-radius: 28px;
    background: #2a5373;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 16px 34px rgba(42, 83, 115, 0.24);
}

.destination-link-muted {
    color: #5c7286;
    cursor: default;
}

.destination-link-muted:hover {
    color: #5c7286;
    text-decoration: none;
}

#language-switcher.discover-language-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
}

#language-switcher.discover-language-switcher #language-current {
  background: #ffffff;
  border: 1px solid rgba(215, 220, 227, 0.95);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: #2a5373;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  cursor: pointer;
}

#language-switcher.discover-language-switcher #language-menu {
  position: absolute;
  right: 0;
  bottom: 52px;
  display: none;
  width: fit-content;
  min-width: 145px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

#language-switcher.discover-language-switcher #language-menu.open {
  display: block;
}

#language-switcher.discover-language-switcher #language-menu a {
  display: block;
  white-space: nowrap;
  padding: 11px 14px;
  color: #142c40;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

#language-switcher.discover-language-switcher #language-menu a:hover {
  background: #f5f8fb;
}