@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

* {
  box-sizing: border-box;
}

/* ======================
   OSNOVA
====================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5e6db, #fbeed8);
  color: #3a2a1a;
}

/* ======================
   NAVIGACIJA – ESTETSKA
====================== */
.main-nav {
  background-color: #fff3e6;
  padding: 20px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}

/* GUMBI */
.menu-btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #c36241, #a14f35);
  color: #FFDAB9;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 40px;
  border: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* HOVER */
.menu-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #d0724f, #b85d40);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ======================
   GLAVNI BLOK
====================== */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background-color: #fffaf0;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

/* ======================
   NASLOVI
====================== */
h1 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 3em;
  color: #8b5e3c;
  margin-bottom: 30px;
}

h2 {
  color: #a16b4c;
  margin-top: 40px;
}

/* ======================
   BESEDILO
====================== */
p {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ======================
   OKVIRJI
====================== */
.okvir {
  border: 2px solid #a16b4c;
  background-color: #fff3e6;
  padding: 25px;
  margin: 30px auto;
  border-radius: 15px;
}

.sencenje {
  background-color: #f0b97a;
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  padding: 18px;
  border-radius: 12px;
  margin: 30px 0;
}

/* ======================
   SLIKE
====================== */
img {
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 14px;
}

.slika {
  float: left;
  max-width: 300px;
  margin: 0 25px 20px 0;
}

/* ======================
   VIDEO
====================== */
iframe {
  width: 100%;
  height: 360px;
  margin: 30px 0;
  border-radius: 14px;
  border: none;
}

/* ======================
   MOBILNA PRILAGODITEV
====================== */
@media (max-width: 750px) {

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu-btn {
    width: 85%;
    text-align: center;
    font-size: 1.1em;
  }

  .slika {
    float: none;
    max-width: 100%;
    margin: 20px auto;
  }

  .content {
    margin: 20px;
    padding: 25px;
  }

  h1 {
    font-size: 2.2em;
  }
}
