:root {
  --primary: #f8f4eb;
  --secondary: #eae6df;
  --text: #4a3728;
  --buttons: #3c9d9b;
  --nav-elements: #5f7161;
  --risky-buttons: #c86f6f;
}

body {
  background-color: var(--primary);
  color: var(--text);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
}

.content {
  flex: 1;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}

/* Títulos con fuente Serif */
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

/* =========================================
   HEADER (NAVEGACIÓN)
   ========================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: var(--secondary);
  border-bottom: 1px solid rgba(74, 55, 40, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
}

.logo-container h1 {
  font-size: 1.8rem;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.nav-container {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.nav-container a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-container a:hover {
  color: var(--buttons);
}

/* =========================================
   FOOTER (PIE DE PÁGINA)
   ========================================= */
.footer {
  background-color: var(--text);
  color: var(--primary);
  padding: 20px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
