/* RESET */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f4f1;
  color: #1f1f1f;
  line-height: 1.8;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('foto-hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );
}

.hero-text {
  position: relative;
  color: white;
  max-width: 620px;

  margin-left: 10%;
  margin-top: 34vh;

  animation: fadeUp 1.5s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  line-height: 1.4;
}

.hero p {
  margin-top: 20px;
  opacity: 0.9;
}

.name {
  display: block;
  margin-top: 25px;
  font-size: 0.85em;
  letter-spacing: 2px;
  opacity: 0.75;
}

/* TRANSITION */
.transition {
  text-align: center;
  padding: 120px 20px;
  font-size: 1.6em;
  font-family: 'Playfair Display', serif;
  color: #333;
}

/* VIDEO */
.video-section {
  padding: 100px 20px;
  text-align: center;
}

.video-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.video-text p {
  opacity: 0.7;
  margin-bottom: 40px;
}

.video-main iframe {
  width: 80%;
  height: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 60px 10%;
}

iframe {
  width: 100%;
  height: 250px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* STORY */
.story {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 10%;
}

.profile {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 20px;
}

/* SPEAKING */
.speaking {
  background: #e7e5dc;
  padding: 140px 20px;
}

.box {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.box h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
}

.box p {
  margin-bottom: 20px;
}

.cta {
  margin-top: 40px;
  line-height: 2;
  font-size: 1.05em;
}

.contact {
  margin-top: 30px;
  font-size: 0.95em;
  opacity: 0.8;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px;
  font-size: 14px;
  opacity: 0.6;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-text {
    margin-left: 5%;
    margin-top: 38vh;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .video-main iframe {
    width: 100%;
    height: 250px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .story {
    flex-direction: column;
    text-align: center;
  }
}
