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

body {
  font-family: 'Roboto Flex', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

.gallery {
  scroll-snap-type: y mandatory;
  height: 100vh;
  overflow-y: scroll;
}

.photo {
  scroll-snap-align: start;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.photo-caption {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 700;
  color: white;
  z-index: 1;
}

.title-screen {
  background-color: black;
}

.intro-title {
  z-index: 1;
  text-align: center;
}

.intro-hello {
  font-family: 'Bodoni Moda', serif;
  font-size: 8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 1rem;
}

.intro-sub {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  font-weight: 200;
  color: white;
}

.closing-card {
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  scroll-snap-align: start;
  height: 100vh;
  position: relative;
}

.closing-content {
  max-width: 600px;
}

.closing-content h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.closing-content p {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #ddd;
}

.contact-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 200;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: white;
}