body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f8f6ff;
  color: #333;
}

.hero {
  background: url('images/kapak.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  margin: 0;
}

.overlay p {
  font-size: 1.8em;
  margin: 10px 0;
}

.overlay audio {
  margin-top: 20px;
}

.countdown-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
}

.countdown-item {
  text-align: center;
  margin: 0 10px;
}

.countdown-item span {
  font-size: 3em;
  color: #ffffff;
  font-weight: bold;
}

.countdown-item .label {
  font-size: 0.8em;
  color: #ffffff;
  margin-top: 5px;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 2.5em;
  color: #ffffff;
  font-weight: bold;
  margin: 0 5px;
}

/* Dijital Davetiye - SENİN YAPIYA ENTEGRE */
.details {
  background: #ebe6ff url('images/lavanta-desen.png') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
}

.details-card {
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  max-width: 600px;
  font-family: 'Playfair Display', serif;
  color: #333;
}

/* Davetiye İçerikleri */
.couple-names {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #4b0082;
}

.couple-names span {
  font-family: 'Playfair Display', serif;
  font-size: 1em;
}

.invite-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.families {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.2em;
  margin: 30px 0 20px 0;
  font-weight: bold;
  color: #333;
  position: relative;
}

.families::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #ccc;
}


.families::after {
  content: "❤";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1em;
  color: #e63946; /* Hafif kırmızı */
}

.date-time {
  font-size: 1.5em;
  margin: 20px 0;
  color: #333;
}

.location {
  font-size: 1em;
  margin-bottom: 20px;
}

.details-card .button {
  display: inline-block;
  margin: 12px;
  padding: 10px 25px;
  background: #6a5acd;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.details-card .button:hover {
  background: #4b0082;
}

/* Çiçek Süsleri */
.flower {
  position: absolute;
  width: 60px;
  height: 60px;
}

.top-left {
  top: -20px;
  left: -20px;
}

.top-right {
  top: -20px;
  right: -20px;
}

.bottom-left {
  bottom: -20px;
  left: -20px;
}

.bottom-right {
  bottom: -20px;
  right: -20px;
}

/* Animasyon */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Galeri */
.gallery {
  padding: 60px 20px;
  background: #f8f6ff;
  text-align: center;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #4b0082;
}

.scroll-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.scroll-gallery img {
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}
