@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@400;500;600&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  font-family: "Libre Baskerville", Georgia, serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

/* ── Section 1: Fullscreen video hero ── */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  overflow: hidden;
  background-color: #F1F1EC; /* RGB: 241, 241, 236 */
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Scroll hint arrow ── */

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-arrow {
  font-size: 2rem;
  color: rgba(0,0,0,0.4);
}

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

/* ── Section 2: Contact ── */

.contact {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #efece6;
  color: #1a1a1a;
}

.contact-heading {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.contact-text {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 2.5rem;
  color: #3a3a3a;
}

.contact-btn {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.75rem;
  color: #6b7cff;
  text-decoration: none;
  border: 2px solid #6b7cff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
  background-color: #6b7cff;
  color: #ffffff;
}

/* ── Logo ── */

.logo {
  position: fixed;
  bottom: 0.8rem;
  right: 1rem;
  padding: 0.5rem;
  z-index: 10;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .contact-heading {
    font-size: 1.8rem;
  }

}
