/* Retro Swing CSS tema – Kristofz.com */

/* Uvoz Google fontov */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;600&display=swap');

/* Osnovne nastavitve */
body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #fdf6e3;
  color: #2c2c2c;
  line-height: 1.6;
  background-image: url('../images/retro_pattern.png'); /* če imaš vzorec */
  background-repeat: repeat;
}

h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #d94f4f;
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Glava in navigacija */
header, #glava {
  background-color: #3b3b3b;
  color: #fdf6e3;
  padding: 20px;
  text-align: center;
}

#naslov h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0;
  animation: fadeInUp 1s ease-out;
}

#cssmenu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #2c2c2c;
}

#cssmenu li {
  margin: 0 15px;
}

#cssmenu a {
  color: #fdf6e3;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  display: inline-block;
}

#cssmenu a:hover {
  color: #f4c542;
}

/* Vsebina */
section {
  padding: 10px 20px;
  max-width: 900px;
  margin: auto;
}

h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #d94f4f;
  margin-top: 30px;
}

p {
  font-size: 1.1rem;
}

/* Gumbi in CTA */
button, .cta {
  background-color: #d94f4f;
  color: white;
  padding: 10px 20px;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

button:hover, .cta:hover {
  background-color: #f4c542;
  color: #2c2c2c;
}

/* Slike */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Noga */
footer, #noga {
  background-color: #3b3b3b;
  color: #fdf6e3;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Animacije */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Napoved tečajev */
#napoved-tecajev {
  background-color: #fff8e1;
  border: 2px dashed #d94f4f;
  padding: 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
}

#napoved-tecajev h3 {
  font-family: 'Playfair Display', serif;
  color: #d94f4f;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

#napoved-tecajev ul {
  list-style-type: "🎶 ";
  padding-left: 20px;
  margin-top: 10px;
}

#napoved-tecajev li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

#napoved-tecajev a {
  color: #d94f4f;
  font-weight: 600;
  text-decoration: underline;
}

#napoved-tecajev a:hover {
  color: #f4c542;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.quote {
  font-family: 'Great Vibes', cursive;
  font-size: 1.2rem;
  color: #d94f4f;
  text-align: left;
  margin: 30px auto;
}

