* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #faf8f7;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #9d4edd, #c77dff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

section.message {
  padding: 60px 25px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

section.message h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #222;
}

section.message p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  margin-bottom: 20px;
  font-size: 1rem;
}

section.message p.show {
  opacity: 1;
  transform: translateY(0);
}

.apology {
  font-style: italic;
  border-left: 3px solid #e1b8a7;
  padding-left: 15px;
  margin-top: 30px;
}

/* 🎬 Video alanı */
.video-section {
  background: #000;
  padding: 50px 20px;
  text-align: center;
}

.video-section h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.video-section video {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  outline: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 1rem;
  color: #777;
}

/* Mobil uyum */
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  section.message {
    padding: 40px 20px;
  }
  .video-section video {
    width: 95%;
  }
}
