body {
    font-family: 'Great Vibes', cursive;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 250, 245);
    text-align: center;
    /*color: rgb(0,100,0);*/
}

.gold-text {
  font-size: 60px;
  font-weight: bold;
  font-family: 'Great Vibes', cursive;

  background: linear-gradient(
  90deg,
  #3b3a1a,   /* tamna maslinasta baza */
  #7a7a3a,   /* maslinasto srednje */
  #c2c27a,   /* svetli metalik highlight */
  #7a7a3a,
  #3b3a1a
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 3s infinite linear;
}

.content {
    max-width: 800px;
    margin: 0 auto; /* centriranje */
    padding: 0 20px;
}

@keyframes shine {
  0% { background-position: 0% }
  100% { background-position: 100% }
}

.big-text {
    font-size: clamp(50px, 10vw, 120px);
    font-family: 'Great Vibes', cursive;
    line-height: 1.1;
}

.medium-text {
    font-size: clamp(30px, 6vw, 60px);
    font-family: 'Great Vibes', cursive;
}

/* 🌸 zajednički stil */
.flower {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: -1; /* iza teksta */
    pointer-events: none;
}

/* levo cveće */
.flower.left {
    left: -40px; /* 👈 izlazi iz ekrana */
}

/* desno cveće */
.flower.right {
    right: -40px; /* 👈 izlazi iz ekrana */
}


@media (max-width: 768px) {
    .flower {
        height: 60vh; /* manja visina */
        top: auto;
        bottom: 0; /* 👇 dole kao dekoracija */
    }

    .flower.left {
        left: -30px;
    }

    .flower.right {
        right: -30px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 15px;
        padding: 0 15px;
    }
    .content {
        max-width: 90%;
    }
}



/*h2{
  font-family: 'Marck Script', cursive;
}*/