* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fcf8f2;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: #2c1d11; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Logo */
.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4e8c1; 
  text-decoration: none;
  letter-spacing: 0.5px;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #e0d5c1;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4a373; 
}


.btn-cta {
  background-color: #d4a373;
  color: #2c1d11;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: #c08b5c;
  transform: translateY(-2px);
}