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

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

/* HEADER */

.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;
}

/* UVOD */

.hero {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 25px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #6b4c2a;
  line-height: 1.5;
}

/* DESTINACIJE */

.destinations-grid {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

.card-img {
  height: 150px;
  position: relative;
}

/* Oznake na sliki */

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #2a1f14;
  color: #e8c068;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.card-days {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: white;
  color: #3d2e1e;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
}

/* VSEBINA KARTICE */

.card-body {
  padding: 18px;
}

.card-location {
  color: #a77b2e;
  font-size: 13px;
  margin-bottom: 8px;
}

.card-body h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #6b4c2a;
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags span {
  background-color: #f0e8d8;
  color: #6b4c2a;
  padding: 5px 9px;
  border-radius: 12px;
  font-size: 12px;
}

/* SPODNJI DEL KARTICE */

.card-footer {
  border-top: 1px solid #e8dcc8;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer small {
  display: block;
  color: #7b6655;
  font-size: 12px;
}

.card-footer strong {
  font-size: 15px;
}

.card-cta {
  background-color: #2a1f14;
  color: #e8c068;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

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

/* PRILAGODITEV ZA TELEFON IN TABLICO */

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 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;
  }

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

  .hero h1 {
    font-size: 30px;
  }
}