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

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

/* 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;
}

/* GLAVNA KARTICA */

.card {
  max-width: 850px;
  margin: 60px auto;
  background-color: white;
  border: 1px solid #e8dcc8;
  border-radius: 18px;
  padding: 35px;
}

.card h1 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 10px;
}

.intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: #6b4c2a;
  line-height: 1.5;
}

/* OBRAZEC */

form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}

.form-group {
  margin-bottom: 18px;
}

.full-width {
  width: 100%;
  margin-top: 5px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: bold;
  color: #8a6a55;
  font-size: 14px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d8c3a5;
  border-radius: 10px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  background-color: #fffdf9;
  color: #3d2e1e;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #c8973a;
}

/* INTERESI */

.tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tags-group input[type="checkbox"] {
  display: none;
}

.tag-label {
  background-color: #f0e8d8;
  color: #6b4c2a;
  border: 1px solid #d8c3a5;
  border-radius: 20px;
  padding: 8px 13px;
  font-size: 14px;
  cursor: pointer;
  font-weight: normal;
  text-transform: none;
}

.tags-group input[type="checkbox"]:checked + .tag-label {
  background-color: #2a1f14;
  color: #e8c068;
  border-color: #2a1f14;
}

/* SPOROČILA */

.message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.message.success {
  background-color: #e4f3e4;
  color: #27632a;
  border: 1px solid #9bc89b;
}

.message.error {
  background-color: #f8dddd;
  color: #8a2626;
  border: 1px solid #d69a9a;
}

/* GUMB */

.submit-btn {
  display: block;
  width: 100%;
  background-color: #2a1f14;
  color: #e8c068;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #6b4c2a;
  color: white;
}

/* TELEFON IN TABLICA */

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

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

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

  .card {
    margin: 30px 20px;
    padding: 25px;
  }

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

  .card h1 {
    font-size: 28px;
  }
}