/* Hide menu by default on mobile */
.nav_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0%;
  gap: 1rem;
  background-color: #fff;
  position: absolute;
  text-decoration: none;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.nav_list.active {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* .nav_list {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  padding: 1rem;
} */

/* Show when active */
.nav_list.active {
  display: flex;
}

/* Style the hamburger icon */
.nav_toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: block;
}

/* Hide hamburger on larger screens */
@media (min-width: 768px) {
  .nav_toggle {
    display: none;
  }

  .nav_list {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }
}

/* ============ GENERAL PAGE STYLING ============ */
body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* Container for the main blog content */
.container {
  max-width: 900px;
  background: #fff;
  margin: 60px auto;
  padding: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/* ============ HEADINGS & TEXT ============ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #222;
  margin-top: 1.5em;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1em;
}

h2 {
  font-size: 1.8rem;
  color: #071018; /* Elegant gold tone */
  border-left: 4px solid #1b1b1d;
  padding-left: 12px;
}

p {
  font-size: 1rem;
  color: #444;
  margin: 1em 0;
}

/* ============ LINKS ============ */
a {
  color: #b59763;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #000;
}

/* ============ BACK TO BLOG BUTTON ============ */
.back-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background-color: #1b1b1d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #8a733e;
  transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
    margin: 30px auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}