/* Basic styling */
html {
  font-size: 10px;
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Varela Round", sans-serif;
  font-weight: 300;

  font-style: normal;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../img/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  line-height: 1.6;
  padding: 2rem;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Translucent overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* width: 100%;
  height: 100%; */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

a {
  color: #ceebf6;
}

.blog-post {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1); /* Make it slightly transparent */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

header h1 {
  font-size: 4rem;
  color: #ceebf6;
  margin-bottom: 1rem;
}

/* CSS to center the image */
.header-image {
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  /* margin-top: 20px; */
}
.header-image img {
  width: 100%;
  max-width: 300px; /* Limits the maximum width of the image */
  height: auto; /* Maintains aspect ratio */
}

/* CSS to center the image */
.body-image {
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  /* margin-top: 20px; */
}
.body-image img {
  width: 100%;
  max-width: 700px; /* Limits the maximum width of the image */
  height: auto; /* Maintains aspect ratio */
}

.post-meta {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 2rem;
}

section h2 {
  font-size: 3rem;
  color: #f0af4b;
  margin-top: 2rem;
  margin-bottom: 0;
}

section h3 {
  font-size: 2rem;
  color: #f0af4b;
  margin-top: 1rem;
}

section p,
ol {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 2rem;
}

section a {
  font-size: 1.8rem;
  color: #f0af4b;
  margin-bottom: 2rem;
}

section ul {
  padding-left: 2rem;
}

section ul li {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.post-footer {
  position: relative;
  text-align: center;
  padding: 2rem 0;
}

.post-footer p {
  font-weight: normal;
  color: #ccc;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.post-footer p a {
  color: #ceebf6;
  text-decoration: none;
}

.site-header {
  background: #6699cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: sticky;
  top: 0;
  border-radius: 4px;
  z-index: 100;
}

.logo {
  max-height: 40px;
  width: auto;
}

.breadcrumb {
  position: relative;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background: #6699cc;
  border-radius: 4px;
  z-index: 1;
}

.breadcrumb a {
  font-size: 1.5rem;
  color: #ceebf6;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: #f0af4b;
  font-weight: bolder;
  font-size: 1.5rem;
}

.breadcrumb span::before {
  content: "→";
  margin: 0 0.5rem;
  color: #ceebf6;
}

/* Any long quotation like a poem or meditation */
.poem {
  text-align: center;
  font-style: italic;
  margin: 20px 0;
  line-height: 1.8;
  font-size: 1.8rem;
  color: #ccc;

  margin: 1rem 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  /* background: #f0af4b20; */
  border-radius: 10px;
}

/** Explore More Section **/
.explore-more {
  max-width: 800px;
  margin: 5rem auto 5rem auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.explore-more h4 {
  /* font-size: 3rem; */
  font-size: 25px;
  color: #f0af4b;
  font-weight: bold;
}

.explore-more p {
  /* font-size: 2rem; */
  font-size: 20px;
  color: #ccc;
  margin-bottom: 3rem;
  /* line-height: 2.5rem; */
}

.explore-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.explore-links li {
  margin-bottom: 1.5rem;
}

.explore-links a {
  /* font-size: 2rem; */
  font-size: 20px;
  color: #ceebf6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.explore-links a:hover {
  color: #f0af4b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    font-size: 8px;
  }

  .blog-post {
    padding: 2rem;
  }

  .site-header {
    padding: 0.5rem;
  }

  .logo {
    max-height: 30px;
  }

  .explore-more {
    padding: 2rem;
  }

  .explore-more p,
  .explore-links a {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 6px;
  }
}
