 body {
  padding-top: 50px; /* same as navbar height */
}

/* ================= HEADINGS ================= */

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
} 

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: 2rem;
}

h2 {
  font-size: 1.4rem;
  text-align: center;
  color: #444;
  font-weight: 400;
} 

/* ================= NAVIGATION ================= */

/* nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

nav ul {
  display: flex;
  list-style: none;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}

nav li:first-child {
  margin-right: auto;
}

nav li {
  height: 50px;
}

nav a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

nav a:hover {
  background: #5a4030;
  color: #fff;
} */

/* ================= SIDEBAR ================= */

/* .sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  padding-top: 20px;

  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;

  transition: 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar a {
  padding: 12px 20px;
  font-size: 1.2rem;
  color: #111;
} */

/* ================= MENU BUTTON ================= */

/*.menu-button {
  display: none;
} */

/* ================= BLOG CONTENT ================= */

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* text block */
/* .pblog p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #333;
} */

/* image */
.blog-photo {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* materials section */
/* #materials {
  margin-top: 3rem;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 12px;
}

#materials ul {
  list-style: none;
  margin-top: 1rem;
}

#materials li {
  margin-bottom: 0.5rem;
} */

/* ================= RESPONSIVE ================= */

/* @media (max-width: 768px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  nav a {
    padding: 0 12px;
  }
}

@media (max-width: 400px) {
  .sidebar {
    width: 41%;
    height: 50%;
  }
} */


/*@media (max-width: 400px) {
  .sidebar {
    width: 75%;
  }
} */

 

 

 
