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

body {
  font-family: Arial, sans-serif;
  background-color: #faf6f0;
  color: #3d2e1e;
  font-size: 16px;
}

/* HEADER - enak kot na destinations.css */

.site-header {
  background-color: #2a1f14;
  padding: 20px 42px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-tabs {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.nav-tab {
  background-color: transparent;
  color: #c8973a;
  border: 1px solid #6b4c2a;
  border-radius: 25px;
  padding: 11px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}

.nav-tab:hover {
  background-color: #3d2e1e;
  color: #e8c068;
}

.nav-tab.active {
  background-color: #c8973a;
  color: #2a1f14;
  border-color: #c8973a;
}

/* HERO */

.dest-hero {
  background-color: #d8b76a;
  padding: 55px 40px;
}

.dest-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
  color: #6b4c2a;
}

.breadcrumb a {
  color: #6b4c2a;
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb span {
  margin-right: 7px;
}

.dest-hero-badge {
  display: inline-block;
  background-color: #2a1f14;
  color: #e8c068;
  padding: 6px 13px;
  border-radius: 15px;
  font-size: 13px;
  margin-bottom: 14px;
}

.dest-hero h1 {
  font-size: 42px;
  margin-bottom: 8px;
  color: #2a1f14;
}

.dest-hero-sub {
  color: #6b4c2a;
  margin-bottom: 22px;
  font-size: 18px;
}

.dest-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  background-color: rgba(255, 255, 255, 0.55);
  color: #3d2e1e;
  border: 1px solid rgba(107, 76, 42, 0.25);
  border-radius: 20px;
  padding: 8px 13px;
  font-size: 14px;
}

/* GLAVNA POSTAVITEV */

.plan-layout {
  max-width: 1100px;
  margin: 45px auto 70px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: start;
}

.plan-main,
.plan-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* KARTICE IN SECTIONS */

.plan-section,
.sidebar-card {
  background-color: white;
  border: 1px solid #e8dcc8;
  border-radius: 10px;
  overflow: hidden;
}

.section-header {
  border-bottom: 1px solid #e8dcc8;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header h2,
.section-title {
  font-size: 22px;
  color: #2a1f14;
}

.section-icon {
  width: 36px;
  height: 36px;
  background-color: #f0e8d8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-body {
  padding: 22px;
}

.intro-text {
  color: #6b4c2a;
  line-height: 1.7;
}

/* ITINERAR */

.day-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.day-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
}

.day-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-num {
  width: 42px;
  height: 42px;
  background-color: #2a1f14;
  color: #e8c068;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.day-line {
  width: 2px;
  flex: 1;
  background-color: #e8dcc8;
  margin-top: 6px;
}

.day-content h3,
.day-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2a1f14;
}

.day-content p,
.day-desc {
  color: #6b4c2a;
  line-height: 1.6;
}

.day-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.day-highlights span,
.highlight-tag {
  background-color: #f0e8d8;
  color: #6b4c2a;
  border-radius: 13px;
  padding: 5px 10px;
  font-size: 13px;
}

/* NASVETI */

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tip-card {
  background-color: #faf6f0;
  border: 1px solid #e8dcc8;
  border-radius: 10px;
  padding: 16px;
}

.tip-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.tip-card h3,
.tip-title {
  font-size: 17px;
  margin-bottom: 6px;
  color: #2a1f14;
  font-weight: bold;
}

.tip-card p,
.tip-text {
  color: #6b4c2a;
  line-height: 1.5;
  font-size: 14px;
}

/* SIDEBAR */

.sidebar-card-header {
  background-color: #2a1f14;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card-header h3 {
  color: #e8c068;
  font-size: 18px;
}

.sidebar-card-body {
  padding: 18px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e8dcc8;
  padding: 9px 0;
  font-size: 14px;
}

.budget-row span,
.budget-row-label {
  color: #6b4c2a;
}

.budget-row strong,
.budget-row-value {
  color: #2a1f14;
  font-weight: bold;
}

.budget-total {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 2px solid #e8dcc8;
}

.budget-total span,
.budget-total-label {
  font-weight: bold;
}

.budget-total strong,
.budget-total-value {
  color: #c8973a;
  font-size: 18px;
  font-weight: bold;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.info-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.info-item-icon {
  width: 24px;
}

.info-item-text {
  color: #6b4c2a;
  line-height: 1.5;
}

.info-item strong {
  display: block;
  color: #2a1f14;
  margin-bottom: 2px;
}

.sidebar-cta {
  display: block;
  width: 100%;
  background-color: #2a1f14;
  color: #e8c068;
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: bold;
}

.sidebar-cta:hover {
  background-color: #6b4c2a;
  color: white;
}

/* TELEFON IN TABLICA */

@media (max-width: 900px) {
  .plan-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .site-header {
    padding: 18px 20px;
    justify-content: center;
  }

  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-tab {
    text-align: center;
  }

  .dest-hero {
    padding: 40px 25px;
  }

  .dest-hero h1 {
    font-size: 34px;
  }

  .plan-layout {
    margin-top: 30px;
    padding: 0 18px;
  }

  .day-item {
    grid-template-columns: 45px 1fr;
  }
}
