/* 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, {
  font-family: 'Playfair Display', serif;
  color: #d94f4f;
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}

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


/* 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;
}

.retro-button {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(145deg, #d35400, #e67e22);
  border: 3px solid #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.retro-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  background: linear-gradient(145deg, #e67e22, #f39c12);
}

.retro-button.facebook {
  background: linear-gradient(145deg, #3b5998, #4a69ad);
}

.retro-button.facebook:hover {
  background: linear-gradient(145deg, #4a69ad, #5b7bd5);
}

