body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.responsive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e8d8c3;
  padding: 1rem 2rem;
  position: relative;
  flex-wrap: wrap;
}

.responsive-header img {
  width: 150px;
  height: 150px;
}

.responsive-header h3{
  font-family: cursive;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #3e2f1c;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #5a4227;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  color: #3e2f1c;
  display: none;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #3e2f1c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a67c52;
}

/* 🌐 Responsive Styles */
@media (max-width: 768px) {
  .responsive-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    text-align: center;
    margin-top: 0.5rem;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background-color: #fffaf5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 1rem;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .nav-menu.show {
    display: flex;
  }
}