/*
Theme Name: Astra Relax Child
Template: astra
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #111;
  color: #f3eee8;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f3eee8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #f3eee8;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e3c8c0;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
    cursor: pointer;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #f3eee8;
}
