/* reset */
* {margin: 0; padding: 0; box-sizing: border-box;}
html, body {
  height: 100%;
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;

  /* scroll snap container */
  scroll-snap-type: y mandatory;
}

/* nav - top right links, black text, turns white on hover */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  padding: 20px 50px;
  background: transparent;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
nav ul li a {
  text-decoration: none;
  color: #000; /* black text */
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1rem;
  transition: color 0.3s;
}
nav ul li a:hover, nav ul li a:active {
  color: #fff; /* turns white on hover/click */
}

/* full-screen sections */
.full-section {
  height: 100vh;
  width: 100%;
  background-size: cover; /* fill viewport */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px 50px;

  /* scroll snap alignment */
  scroll-snap-align: start;

  /* blurred until active */
  filter: blur(8px);
  transition: filter 1s ease-out, transform 1s ease-out, opacity 1s ease-out;

  opacity: 0;
  transform: translateY(50px);
}

/* when section enters view */
.full-section.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* LOCATION overlay */
.location {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background-color: #000; /* solid black background */
  padding: 6px 12px;
  border-radius: 4px;
}

/* responsive */
@media screen and (max-width: 768px){
  nav {padding: 15px 20px;}
  nav ul {gap: 20px;}
  .full-section {padding: 10px 20px;}
  .location {font-size: 1rem;}
}