@import url('https://fonts.googleapis.com/css2?family=Caveat&family=DM+Serif+Display&display=swap');

body {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: #4b2e2e;
  margin: 0;
  padding: 0;
  background-image: url('images/moja_pozadina.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}


@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

.container {
  background: rgba(255, 255, 255, 0.9);
  margin: 40px auto;
  padding: 30px;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3em;
  color: #f9c6c9;
  margin-bottom: 0;
}

.subtext {
  font-size: 1em;
  color: #7a4d4d;
  margin-top: 0;
}

nav {
  margin-top: 20px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #c9788a;
  font-weight: bold;
  border-bottom: 1px dotted #c9788a;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

nav a:hover,
nav .active {
  color: #914d5d;
  border-bottom: 2px solid #914d5d;
}

main .intro {
  text-align: center;
  margin-bottom: 30px;
}

.main-gif {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

.posts-preview article {
  background: #fff0f5;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(201, 154, 170, 0.4);
  transition: box-shadow 0.3s ease;
}

.posts-preview article:hover {
  box-shadow: 0 4px 14px rgba(201, 154, 170, 0.7);
}

.posts-preview h2 {
  font-family: 'DM Serif Display', serif;
  color: #f9c6c9;
  margin-top: 0;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #6e4e4e;
  margin-top: 30px;
}

.my-image {
  max-width: 80%;    /* slika će biti široka maksimalno 80% širine roditeljskog elementa */
  height: auto;      /* visina će se automatski prilagoditi da ne iskrivi sliku */
  border-radius: 15px; /* blago zaobljeni uglovi */
  margin-top: 20px;    /* razmak od elementa iznad */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* blaga senka ispod slike */
  
}
.lana-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.decor-line {
  height: 2px;
  background: linear-gradient(to right, #f9c6c9, #fff, #f9c6c9);
  margin: 20px 0;
  border-radius: 5px;
}
.playlist-row {
  display: flex;             /* stavlja decu u horizontalni red */
  gap: 20px;                 /* razmak između slika */
  justify-content: center;   /* centriraj ceo red */
  margin-top: 30px;          /* razmak od sadržaja iznad */
}

.clickable-image {
  width: 300px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

