:root {
  --primary: #3e2f20;
  --secondary: #f1e8dd;
  --accent: #b0845c;
  --text: #1e1e1e;
  --bg-light: #fafafa;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text);
}

header {
  background: var(--primary);
  color: white;
  padding: 40px 20px -20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

header .logo {
  max-height: 250px;
  width: auto;
  margin-bottom: -10px;
}

header p {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: -20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-text h2,
.about-text p {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.6rem; /* volitelně uprav podle potřeby */
  line-height: 1.6;   /* pro lepší čitelnost */
}


.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section h2 {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 2.2rem; /* větší velikost, protože font je rukopisný */
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}


footer a {
  color: white !important;
  text-decoration: none !important;
}

footer a:hover {
  color: #ddd !important;
  text-decoration: underline !important;
}