/* Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Playfair Display', serif;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background: black;
  color: white;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

/* Logo fixed left */
nav .logo {
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
  margin-right: 1rem;
}

/* Scrollable menu */
nav .menu {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

/* Horizontal menu */
nav ul {
  display: flex;
  list-style: none;   /* removes bullets */
  margin: 0;
  padding: 0;
}

nav li {
  flex: 0 0 auto;     /* prevents shrinking */
  margin: 0 0.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

nav a:hover {
  text-decoration: underline;
}

/* Sections */
.fullscreen {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-link {
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0,0,0,0.4);
}

.block-link:hover {
  background: white;
  color: black;
}

/* Contact */
#contact {
  padding: 4rem 2rem;
  background: #111;
  color: white;
  text-align: center;
}

#contact input, #contact button {
  margin: 0.5rem;
  padding: 0.75rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: black;
  color: white;
}