/*
 * Tema: Sydney Child Teme
 * Autor: Altaj
 * Opis: CSS stilovi specifični za stranicu "Srce iznenađenja"
 * Verzija: 1.0.0
 * Datum: 07. juli 2025.
 */

/* Glavni kontejner stranice */
.surprise-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Stilovi za srce koje kuca */
.heart-beat-animation {
  /* Vaši CSS stilovi i keyframe animacije za srce */
}

/* Stilovi za tajmer */
.countdown-timer {
  /* Vaši CSS stilovi za prikaz tajmera */
}

/* Stilovi za vrteće citate */
.quote-carousel {
  /* Vaši CSS stilovi za citate */
}

.surprise-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === Srce i kontejner === */
.heart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.heart {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #ffd700 30%, #ff6b81 100%);
  position: relative;
  transform: rotate(-45deg);
  animation: pulse 2s infinite;
  margin: 0 auto;
}

.heart::before,
.heart::after {
  content: "";
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #ffd700 30%, #ff6b81 100%);
  border-radius: 50%;
  position: absolute;
}

.heart::before { top: -50px; left: 0; }
.heart::after  { top: 0; left: 50px; }

.heart-link {
  display: inline-block;
}

.heart:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

@keyframes pulse {
  0%   { transform: rotate(-45deg) scale(1); opacity: 1; }
  50%  { transform: rotate(-45deg) scale(1.1); opacity: 0.8; }
  100% { transform: rotate(-45deg) scale(1); opacity: 1; }
}

/* === Tajmer sekcija === */
.timer-section h2 {
  color: #d65050;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.timer-quote {
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

#countdown {
  font-size: 2.2rem;
  color: #d65050;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* === Citat === */
.quote {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 1rem auto;
  min-height: 100px;
  text-align: center;
  padding: 0 15px;
  transition: opacity 0.5s ease-in-out;
}

/* === Uvodni tekst === */
.srce-iznenadjenja .intro-section {
  margin-top: 2rem;
  text-align: center;
}

h2 {
  color: #d65050;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.intro-paragraph {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

.note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
}

/* === Mobilna podrška === */
@media (max-width: 768px) {
  .quote { font-size: 1.2rem; }
  .timer-section h2 { font-size: 1.5rem; }
  #countdown { font-size: 1.6rem; }
  .intro-paragraph { font-size: 1rem; }
}