body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ffb6c1, #ff69b4, #ff1493, #ff69b4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  text-align: center;
  color: white;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.container {
  padding: 50px;
  position: relative;
  z-index: 2;
}


#juliana {
  font-size: 4em;
  font-weight: bold;
  letter-spacing: 5px;
  display: inline-block;
}

#juliana span {
  display: inline-block;
  animation: glow 2s infinite alternate, bounce 3s infinite ease-in-out;
}

#juliana span:nth-child(1) { animation-delay: 0s; }
#juliana span:nth-child(2) { animation-delay: 0.2s; }
#juliana span:nth-child(3) { animation-delay: 0.4s; }
#juliana span:nth-child(4) { animation-delay: 0.6s; }
#juliana span:nth-child(5) { animation-delay: 0.8s; }
#juliana span:nth-child(6) { animation-delay: 1s; }
#juliana span:nth-child(7) { animation-delay: 1.2s; }

@keyframes glow {
  from { text-shadow: 0 0 10px #ff66cc, 0 0 20px #ff3399, 0 0 30px #ff0066; }
  to   { text-shadow: 0 0 20px #fff, 0 0 40px #ff66cc, 0 0 60px #ff3399; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.love-message {
  font-size: 1.5em;
  margin: 30px auto;
  max-width: 800px;
  line-height: 1.6;
}

.timer {
  margin: 30px 0;
  font-size: 1.3em;
}

#timeTogether {
  font-size: 2em;
  font-weight: bold;
}


.termin-section {
  margin-top: 40px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  min-width: 350px;
}

.termin-section h2 {
  margin-bottom: 15px;
}

#terminForm input, #terminForm button {
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
}

#terminForm input {
  width: 180px;
}

#terminForm button {
  background-color: #ff66cc;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#terminForm button:hover {
  background-color: #ff3385;
}


.termin-liste {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.termin-card {
  background: rgba(255, 255, 255, 0.25);
  padding: 15px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.termin-card:hover {
  transform: scale(1.05);
}

.termin-card h3 {
  margin: 0;
  font-size: 1.3em;
  color: #fff;
}

.termin-card p {
  margin: 5px 0 0;
  font-size: 1.1em;
  color: #ffe6f2;
}


.termin-liste {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.termin-card {
  background: rgba(255, 255, 255, 0.25);
  padding: 15px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  position: relative;
}

.termin-card:hover {
  transform: scale(1.05);
}

.termin-card h3 {
  margin: 0;
  font-size: 1.3em;
  color: #fff;
}

.termin-card p {
  margin: 5px 0 0;
  font-size: 1.1em;
  color: #ffe6f2;
}


.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3385;
  border: none;
  color: white;
  font-size: 0.9em;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.delete-btn:hover {
  background: #cc0055;
  transform: scale(1.2);
}



