/* Fade animation for loaded content */
.fade-container { opacity: 0; transition: opacity 0.25s ease; }
.fade-container.loaded { opacity: 1; }

/* Body */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background: white;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid #eee;
}
nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #c58e76;
  text-decoration: none;
}
nav .links a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
nav .links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #c58e76;
  transition: width 0.3s ease;
}
nav .links a:hover { color: #c58e76; }
nav .links a:hover::after { width: 100%; }

/* Hero section */
.hero { text-align: center; padding: 120px 20px 80px; background: #fff; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #c58e76;
  margin-bottom: 20px;
}
.hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #555;
}

/* Wave divider */
.custom-shape-divider-bottom svg, .wave-divider svg {
  display: block; width: 100%; height: 100px;
}

/* Section blocks */
.section-gray {
  background: #eae7e1;
  padding: 60px 20px;
  text-align: center;
  min-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.section-gray h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c58e76;
  margin-bottom: 20px;
}
.section-gray p { max-width: 700px; margin: 0 auto 20px; font-size: 1.1rem; }

/* Blog/article/read-more/back links unified styling */
.blog-title a, .read-more {
  color: #c58e76;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  transition: color 0.2s;
}
.blog-title a:hover, .read-more:hover { color: #8a5a3b; text-decoration: underline; }

/* Optional: Remove default blue from any other links */
a { color: inherit; text-decoration: none; }

/* Footer */
footer { background: #f5f5f5; text-align: center; padding: 30px; font-size: 0.9rem; color: #777; }

/* ---- fix black line under sticky nav ---- */
#content:focus { outline: none; }
