/* === GLOBAL STIL === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Oxygen', sans-serif;
  text-align: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* === POZADINA === */
.pozadina {
  background: url("/img/pozadina.webp") no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

/* === TIPOGRAFIJA === */
h1 {
  font-size: 36px;
  margin: 15px 0 10px 0;
}

h2 {
  font-size: 22px;
  margin: 8px 0;
}

h3 {
  font-size: 15px;
  margin: 3px 0;
}

h4 {
  font-size: 16px;
  font-weight: normal;
  margin: 5px 0;
}

p {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.5em;
  margin: 5px 0;
}

/* === KONTAKT (bivši p2) === */
.contact {
  font-size: 18px;
  font-weight: bold;
  margin: 4px 0;
}

/* === GLAVNI KONTEJNER === */
#main {
  color: #6F8FAF; /* osnovna boja teksta */
}

/* === LINKOVI === */
.no-underline a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.no-underline a:hover {
  opacity: 0.8;
}

/* === LIGHT MODE (default) === */
@media (prefers-color-scheme: light) {
  body {
    background-color: #ffffff;
    color: #6F8FAF;
  }

  a {
    color: #6F8FAF;
  }

  .contact a {
    color: #5A7AA5;
    font-weight: bold;
  }

  .pozadina {
    opacity: 0.1;
  }
}

/* === DARK MODE === */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #0e1217;
    color: #bcd3e6;
  }

  a {
    color: #bcd3e6;
  }

  .contact a {
    color: #a7c3ff;
  }

  .pozadina {
    opacity: 0.20; /* malo jača pozadina u dark modu */
  }
}
