body {
    font-family: 'Georgia', serif;
    background: #f9f9fb;
    color: #222;
    margin: 0;
    padding: 0;
}

header {
    background: #f9f9fb;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1rem 1rem 1rem;
}

.brand {
    font-size: 1.2rem;
    font-weight: lighter;
}

.navbar-right a {
    margin-left: 2rem;
    text-decoration: none;
    color: #19332a;
    font-weight: lighter;
    font-size: 1.2rem;
}

.navbar-right a:hover {
    text-decoration: underline;
}

.intro {
    text-align: center;
    margin: 0rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro h1,
.intro .description {
    display: block;
}

.intro h1 {
    font-size: 2rem;
    color: #b9ad9c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: lighter;
}

.intro {
    background-image: url('background.png');
    background-size: cover;         /* Cover the whole section */
    background-position: center;    /* Center the image */
    background-repeat: no-repeat;
    height: 100vh;                   /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;                    /* White text for contrast */
    text-align: center;
  }
  
  .hero-content {
    background: rgba(0,0,0,0.3);    /* Optional: dark overlay for readability */
    padding: 2rem;
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 5vw;                 /* Responsive large font */
    font-weight: bold;
    margin: 0 0 1rem 0;
  }
  
  .hero p {
    font-size: 1.5vw;
    margin: 0;
  }
  
  .divider {
    border: none;
    border-top: 3px solid #fff;     /* White dividing bar */
    margin: 0;
  }

.description {
    font-size: 1.1rem;
    color: #f9f9fb;
    max-width: 600px;
    margin: 0 auto;
}

p {
    color: #daa464;
    margin-bottom: 2.2rem;
}

a {
    color: #d8d3cc;
    text-decoration: none;
}

h1 {
    color: #d6c6b4;
}

h2 {
    font-weight: bolder !important;
    margin-left: 0rem;
    text-decoration: none;
    color: #19332a;
    font-weight: lighter;
    font-size: 1.2rem !important;
}

main {
    margin-top: 10rem;
}

h3 {
    font-weight: lighter;
}

.blog-list {
  max-width: 700px;
  margin-top: 50px !important;
  margin: 3rem auto;
  padding: 0 1rem;
}

.blog-list h2 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.post-list {

  font-size: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list li {
  margin-bottom: 2rem;
  
}

.post-list a {
  color: #222;
  text-decoration: underline solid #4F8EF7 2px;
  font-weight: normal;
  transition: color 0.2s;
}

.post-list a:hover {
  color: #4F8EF7;
}

.post-date {
  color: #888;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}