/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and background */
body {
  background-color: #fff;       /* White background for a clean look */
  padding-top: 100px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #111;                  /* Dark text */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  line-height: 1.6;
}

/* Navbar styles */
header {
  position: fixed;
  top: 0; right: 0; left: 0;
  background-color: #161616;       /* Darker nav for contrast */
  z-index: 1000;
  padding: 10px 20px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #eee;                /* Light text for nav */
  font-size: 1.5em;
  padding: 15px 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background-color: #eee;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-list li a:hover {
  color: #bbb;
}

.nav-list li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Heading */
h1 {
  text-align: center;
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #111;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: none;
}

/* Inspiration container */
.inspiration {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem 20px 3rem;
  justify-content: center;
  width: 90%;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* Figure styles */
.inspiration figure {
  /* No background or box-shadow - transparent */
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Images */
.inspiration img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  display: block;
}

/* Figcaption */
.inspiration figcaption {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/* Inspiration text */
.inspo-text {
  font-size: 0.95rem;
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.5;
  max-width: 500px;
  color: #444;
}

/* Responsive design */
@media (min-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .inspiration {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 2rem;
  }

  .inspiration figcaption {
    font-size: 1.1rem;
  }

  .inspo-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.3rem;
  }

  .inspiration {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
  }

  .inspiration figcaption {
    font-size: 1.2rem;
  }

  .inspo-text {
    font-size: 1.1rem;
  }
}
