@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  animation: fadeIn 0.5s ease-in-out;
}

h1 {
  font-family: "Source Serif 4", serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-family: "Source Serif 4", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h3.section-heading {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  width: fit-content;
}
h3.section-heading::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #C79B5B;
  margin-top: 8px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

button {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #102A2B;
  background-color: #DEEAE3;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
button svg {
  width: 20px;
  height: 20px;
  stroke: #102A2B;
}
button:hover {
  background-color: #123C35;
  color: #FFFFFF;
}
button:hover svg {
  stroke: #FFFFFF;
}

.row {
  display: flex;
  gap: 0;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.divider {
  width: 100%;
  height: 2px;
  background-color: #C79B5B;
}

body {
  background-color: #F8F5EF;
  color: #102A2B;
}

header {
  background-color: #FFFFFF;
  padding: 16px 64px;
  position: relative;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 64px rgba(0, 0, 0, 0.05);
}
header a {
  text-decoration: none;
  color: inherit;
}
header .col {
  gap: 4px;
}
header nav {
  width: 70%;
}
header nav ul {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}
header nav ul .row {
  width: 100%;
  justify-content: flex-end;
}
header nav ul li {
  font-size: 0.9rem;
  font-weight: 500;
}
header nav ul li:last-child {
  position: relative;
}
header nav ul li button.navigation {
  display: block;
  border: none;
  background: none;
  color: #102A2B;
  position: relative;
  text-align: left;
}
header nav ul li button.navigation::after {
  transition: width 0.3s ease;
  position: relative;
  content: "";
  display: block;
  left: 10%;
  width: 0;
  height: 2px;
  background-color: #C79B5B;
}
header nav ul li button.navigation:hover, header nav ul li button.navigation.active {
  border: none;
  background: none;
  color: #C79B5B;
}
header nav ul li button.navigation:hover::after, header nav ul li button.navigation.active::after {
  width: 80%;
}
header nav ul.language-dropdown {
  position: absolute;
  top: 100%;
  width: fit-content;
  left: 0;
  background-color: #FFFFFF;
  border: 1px solid #DDD6CA;
  border-radius: 4px;
  display: none;
  flex-direction: column;
  gap: 0;
}
header nav ul.language-dropdown.show {
  display: flex;
}
header nav ul.language-dropdown li {
  width: 100%;
}
header nav ul.language-dropdown li button {
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  background-color: transparent;
}
header nav ul.language-dropdown li button:hover {
  background-color: #DEEAE3;
  color: #102A2B;
}
header button.menu-toggle {
  height: fit-content;
  padding: 12px;
  border-radius: 4px;
}

div.hero {
  padding: 64px;
  gap: 32px;
  background-color: #FFFFFF;
  align-items: stretch;
  height: fit-content;
}
div.hero .col {
  width: calc(50% - 16px);
  gap: 32px;
  justify-content: center;
}
div.hero .col .divider {
  width: 40%;
}
div.hero .col p {
  color: #6B7470;
  font-size: 1.5rem;
}
div.hero .col button {
  font-size: 1.2rem;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #C79B5B;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
}
div.hero .col button svg {
  stroke: #FFFFFF;
}
div.hero .col button:hover {
  background-color: #b2823d;
}
div.hero .img {
  width: calc(50% - 16px);
  display: flex;
  justify-content: center;
  align-items: center;
}
div.hero .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

div#o-meni {
  padding: 64px;
  gap: 32px;
}
div#o-meni .col {
  width: calc(50% - 16px);
  gap: 32px;
}
div#o-meni .col h2 {
  font-size: 3.5rem;
  font-weight: 500;
}
div#o-meni .col p {
  font-size: 1.5rem;
}
div#o-meni .cards {
  width: calc(50% - 16px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
div#o-meni .cards .card {
  width: calc(50% - 8px);
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 8px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div#o-meni .cards .card h4 {
  font-size: 1.5rem;
  font-weight: 400;
}
div#o-meni .cards .card h4::after {
  content: "";
  display: block;
  width: 7rem;
  height: 2px;
  background-color: #C79B5B;
  margin-top: 8px;
}
div#o-meni .cards .card p {
  color: #6B7470;
  font-size: 1.1rem;
}
div#o-meni .cards .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 50%;
  background-color: rgba(199, 155, 91, 0.4);
}
div#o-meni .cards svg {
  width: 100%;
  height: 100%;
  stroke: #102A2B;
}

div#ponudba {
  padding: 64px;
  gap: 32px;
  background-color: #FFFFFF;
}
div#ponudba .cards {
  background-color: #F8F5EF;
}
div#ponudba .row {
  align-items: center;
}
div#ponudba .row:nth-child(2n+1) {
  flex-direction: row-reverse;
}
div#ponudba .row:nth-child(2n+1) img {
  border-radius: 0 16px 16px 0;
}
div#ponudba .row img {
  width: 50%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}
div#ponudba .row .col {
  width: 50%;
  padding: 32px;
  gap: 8px;
}
div#ponudba .row .col h4 {
  font-family: "Source Serif 4", serif;
  color: #C79B5B;
  font-size: 2rem;
}
div#ponudba .row .col h3 {
  font-size: 2.5rem;
}
div#ponudba .row .col p {
  font-size: 1.2rem;
  color: #6B7470;
}

div#pogosta-vprasanja {
  padding: 64px;
  gap: 32px;
}
div#pogosta-vprasanja .row {
  gap: 16px 32px;
}
div#pogosta-vprasanja .row .col {
  width: calc(50% - 16px);
  gap: 16px;
}
div#pogosta-vprasanja .row .col .card {
  overflow: hidden;
}
div#pogosta-vprasanja .row .col .card.show .question svg {
  transform: rotate(180deg);
}
div#pogosta-vprasanja .row .col .card.show .answer {
  grid-template-rows: 1fr;
}
div#pogosta-vprasanja .row .col .question {
  position: relative;
  z-index: 10;
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
div#pogosta-vprasanja .row .col .question:hover {
  background-color: #DEEAE3;
}
div#pogosta-vprasanja .row .col .question h4 {
  font-size: 1.1rem;
}
div#pogosta-vprasanja .row .col .question p {
  color: #6B7470;
  font-size: 1rem;
}
div#pogosta-vprasanja .row .col .question svg {
  transition: transform 0.3s ease;
}
div#pogosta-vprasanja .row .col .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
div#pogosta-vprasanja .row .col .answer .inner {
  overflow: hidden;
}
div#pogosta-vprasanja .row .col .answer p {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-top: 8px;
  padding: 16px;
  color: #6B7470;
  font-size: 1rem;
}

div#kontakt {
  padding: 64px;
  gap: 32px;
  background-color: #FFFFFF;
  align-items: center;
}
div#kontakt .col {
  width: calc(50% - 16px);
  gap: 32px;
}
div#kontakt .col h2 {
  font-size: 2.5rem;
  font-weight: 400;
}
div#kontakt .col .col {
  width: 100%;
  gap: 16px;
}
div#kontakt .col .col a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #102A2B;
  text-decoration: none;
  font-size: 1.2rem;
}
div#kontakt .col .col a:hover {
  color: #C79B5B;
}
div#kontakt .col .col a:hover svg {
  stroke: #C79B5B;
}
div#kontakt .col .col a svg {
  width: 24px;
  height: 24px;
  stroke: #102A2B;
}
div#kontakt .form {
  width: calc(50% - 16px);
  height: fit-content;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #DDD6CA;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
div#kontakt .form .col {
  width: 100%;
  gap: 8px;
}
div#kontakt .form .col label {
  font-size: 0.9rem;
  color: #102A2B;
}
div#kontakt .form .col input, div#kontakt .form .col textarea {
  width: 100%;
  padding: 8px 8px;
  border-radius: 4px;
  border: 1px solid #DDD6CA;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  outline: none;
}
div#kontakt .form .row {
  gap: 16px;
}
div#kontakt .form button {
  width: 100%;
  justify-content: center;
  background-color: #C79B5B;
  align-items: center;
  color: #FFFFFF;
}
div#kontakt .form button svg {
  stroke: #FFFFFF;
}
div#kontakt .form button:hover {
  background-color: #b2823d;
}
div#kontakt .form button:hover svg {
  stroke: #FFFFFF;
}

footer {
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer p {
  font-size: 0.9rem;
  color: #102A2B;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  flex-direction: row;
  align-items: center;
}
footer p a {
  color: #102A2B;
  text-decoration: underline;
  margin-left: 4px;
  cursor: pointer;
}
footer p a:hover {
  color: #C79B5B;
}

div.privacypolicy {
  padding: 64px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div.privacypolicy h2 {
  margin-bottom: 8px;
}
div.privacypolicy p.muted {
  margin-top: 0;
  color: #6B7470;
}
div.privacypolicy p {
  margin-top: 8px;
}
div.privacypolicy h3 {
  margin-top: 32px;
}
div.privacypolicy a {
  color: #102A2B;
}
div.privacypolicy a:hover {
  color: #C79B5B;
}

.desktoponly {
  display: flex !important;
}

.mobileonly {
  display: none !important;
}

@media (max-width: 1150px) {
  .desktoponly {
    display: none !important;
  }
  .mobileonly {
    display: flex !important;
  }
  header {
    padding: 16px 32px;
  }
  div.hero, div#o-meni, div#ponudba, div#pogosta-vprasanja, div#kontakt, div.privacypolicy {
    padding: 32px;
    flex-direction: column;
  }
  div.hero .col, div.hero .cards, div.hero .img, div.hero .form, div#o-meni .col, div#o-meni .cards, div#o-meni .img, div#o-meni .form, div#ponudba .col, div#ponudba .cards, div#ponudba .img, div#ponudba .form, div#pogosta-vprasanja .col, div#pogosta-vprasanja .cards, div#pogosta-vprasanja .img, div#pogosta-vprasanja .form, div#kontakt .col, div#kontakt .cards, div#kontakt .img, div#kontakt .form, div.privacypolicy .col, div.privacypolicy .cards, div.privacypolicy .img, div.privacypolicy .form {
    width: 100%;
  }
  div.hero .img {
    height: auto;
  }
  div#ponudba .row {
    flex-direction: column-reverse !important;
    position: relative;
  }
  div#ponudba .row::after {
    content: "";
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100%;
    height: 10vh;
    background: linear-gradient(transparent, rgba(248, 245, 239, 0.4));
    z-index: 10;
  }
  div#ponudba .row img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 20vh;
    object-fit: cover;
    border-radius: 0 0 16px 16px !important;
  }
  div#ponudba .row .col {
    position: relative;
    z-index: 20;
    padding: 16px;
    width: 100%;
    margin-bottom: 32px;
  }
  div#ponudba .row:last-child .col {
    margin-bottom: 0;
  }
  div#pogosta-vprasanja .row {
    flex-wrap: wrap;
  }
  div#pogosta-vprasanja .row .col {
    width: 100%;
  }
  div#pogosta-vprasanja .row .col .question:hover {
    background-color: #FFFFFF;
  }
  html {
    font-size: 16px;
  }
  header a {
    width: 80%;
  }
  header nav ul.nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    right: min(-30vw, -200px);
    width: 30vw;
    min-width: 200px;
    height: 100vh;
    padding: 16px 16px;
    transition: right 0.3s ease;
  }
  header nav ul.nav li {
    width: 100%;
  }
  header nav ul.nav.show {
    display: flex;
    right: 0;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  div#kontakt .form .row {
    flex-direction: column;
  }
  div#o-meni .cards {
    flex-wrap: wrap;
  }
  div#o-meni .cards .card {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
