/* v_3.1 25. 3. 2026, 14.19 */

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

:root {
  --background-color: #ffff99;
  --primary-color: #6e2306;
  --red: #ab0213;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16 px;
  line-height: 1.5;
  background: var(--background-color);
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Navigacijska vrstica */

.navbar {
  background: var(--background-color);
  padding: 20px;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hamburger meni za mobilne naprave */

.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
}

.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  margin: 6px 0;
}

.mobile-menu {
  position: fixed;
  top: 50px;
  right: -310px;
  width: 250 px;
  font-size: 0.5rem;
  z-index: 100;
  background: var(--background-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  padding-right: 10 px;
}

.mobile-menu ul li {
  margin: 10 px 0;
}

.mobile-menu ul li a {
  font-size: 1rem;
  transition: 0.3s;
}

/*Glavni del*/

.glavni_del {
  margin-bottom: 20px;
}

.glavni_del-text {
  padding-top: 10px;
  list-style-type: circle;
}

.slike {
  display: flex;
  flex: 1 0 100%;
  object-fit: contain;
}

.cena {
  padding-top: 10px;
  color: var(--red);
}

/* Vizitka */

.vizitka {
  padding-top: 1.5rem;
}

.vizitka_vrstica {
  padding-top: 10px;
}

/* Razredi uporabnosti */

.container {
  max-width: 2560px;
  margin: 0 auto;
  padding: 0 15px;
}

.image {
  display: flex;
  justify-content: center;
}

.container-sm {
  max-width: 1860px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Harmonika za cenike */

.harmonika {
  background-color: var(--background-color);
  cursor: pointer;
  padding: 10px 0px 10px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

.harmonika:hover {
  background-color: #ccc;
}

.harmonika.active {
  background-color: #ccc;
}

.panel {
  padding: 0 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.harmonika:after {
  content: "\2193";
  color: #000000;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.harmonika.active:after {
  content: "\2191";
  color: #000000;
}

/* Razredi pisave */
.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40 px 0 20 px;
}

.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40 px 0 20 px;
}

.text-l {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30 px 0 20 px;
}

.text-m {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20 px 0 10 px;
}

.text-s {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10 px 0 5 px;
}

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

/* Medijske poizvedbe */

@media (max-width: 960px) {
  .text-xxl {
    font-size: 2.5rem;
  }
}

@media (max-width: 670px) {
  .navbar .main-menu {
    display: none;
  }

  .navbar .hamburger-button {
    display: block;
  }
}

@media (max-width: 500px) {
  .text-xxl {
    font-size: 2rem;
  }
}
