/*
Theme Name: Tom on Ride
Theme URI: https://tomonride.com
Author: Tom
Description: Minimal fullscreen one-page WordPress theme inspired by quiet storytelling and travel.
Version: 1.0
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  color: white;
  background: black;
}

nav {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1000;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
}

section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 24px;
}

h1 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 2;
  opacity: 0.9;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800");
}

.about {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1800");
}

.journal {
  background-image: url("https://images.unsplash.com/photo-1493246318656-5bfd4cfb29b8?q=80&w=1800");
}

.contact {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=1800");
}

footer {
  padding: 40px;
  text-align: center;
  background: black;
  font-size: 13px;
  opacity: 0.7;
}

@media (max-width: 768px) {

  nav {
    top: 20px;
    right: 20px;
  }

  nav ul {
    gap: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
  }

  section {
    background-attachment: scroll;
  }
}
