@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500&display=swap);

/* === Akademie der Masken — Public Pages Theme === */

body {
  background-color: #FAF6F0 !important;
  font-family: Inter, -apple-system, sans-serif !important;
  color: #2C2218 !important;
  line-height: 1.6;
}

.header .logo img { max-height: 60px; }
.header .logo a { text-decoration: none; }

.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 30px;
}

h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: #2C2218 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 { font-size: 1.8rem; margin-bottom: 0.5em; }

.form input[type=text],
.form input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D4C9B8;
  border-radius: 4px;
  background: #FDFAF5;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #2C2218;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form input[type=text]:focus,
.form input[type=email]:focus {
  border-color: #C4A265;
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,162,101,0.15);
}

.form label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C2218;
  display: block;
  margin-bottom: 4px;
}

.lists {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.lists h2 { font-size: 1.2rem; margin-bottom: 10px; }

.lists li {
  padding: 10px 14px;
  margin-bottom: 6px;
  background: #FDFAF5;
  border: 1px solid #D4C9B8;
  border-radius: 4px;
}

.lists li label {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline;
  margin-left: 6px;
}

.lists .description {
  font-size: 0.85rem;
  color: #6B5D50;
  margin: 4px 0 0 24px;
}

.button,
button[type=submit] {
  background: #C4A265 !important;
  color: #2C2218 !important;
  border: none;
  padding: 12px 32px;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.button:hover,
button[type=submit]:hover {
  background: #A8874E !important;
}

a { color: #A8874E; text-decoration: none; }
a:hover { color: #2C2218; text-decoration: underline; }

.alert {
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  background: #EDE6DA;
  border: 1px solid #D4C9B8;
  color: #2C2218;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #6B5D50 !important;
  padding: 30px;
  margin-top: 20px;
}

footer a { color: #6B5D50 !important; }

@media (max-width: 600px) {
  .wrap { padding: 20px 16px; }
  h2 { font-size: 1.5rem; }
}