/* Basis-Styles für die Hochzeitswebseite */

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



body {
  font-family: 'Quicksand', 'Inter', Arial, sans-serif;
  line-height: 1.8;
  color: #3d3d3d;
  background: linear-gradient(120deg, #fdf6f0 0%, #f7faff 100%);
  letter-spacing: 0.01em;
}



header {
  background: linear-gradient(90deg, #fdf6f0 0%, #e0e7ff 100%);
  text-align: center;
  padding: 2.5rem 1rem 2rem 1rem;
  box-shadow: 0 6px 24px rgba(44,62,80,0.06);
  border-bottom: 1px solid #f3e9e1;
}



header h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 3.5rem;
  color: #b48e5c;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-shadow: 0 2px 12px rgba(180,142,92,0.08);
}



header p {
  font-size: 1.3rem;
  color: #7c6f57;
  font-style: italic;
  margin-top: 0.7rem;
}



main {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
}



section {
  margin-bottom: 3.5rem;
  padding: 2.5rem 2rem;
  background: #fffaf6;
  border-radius: 0;
  box-shadow: 0 8px 36px rgba(180,142,92,0.07);
  border: 1px solid #f3e9e1;
}



section h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.4rem;
  color: #b48e5c;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #f3e9e1;
  padding-bottom: 0.7rem;
  font-weight: 700;
}



section p {
  font-size: 1.18rem;
  text-align: center;
  color: #7c6f57;
  margin-bottom: 1.2rem;
}



footer {
  background: linear-gradient(90deg, #fdf6f0 0%, #e0e7ff 100%);
  color: #7c6f57;
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid #f3e9e1;
}


/* Responsive Design */

@media (max-width: 900px) {
  header h1 {
    font-size: 2.2rem;
  }
  section {
    margin: 1rem 0;
    padding: 1.2rem;
  border-radius: 0;
  }
  main {
    padding: 1rem;
  }
}

/* Karten und Buttons */

.card {
  border-radius: 0;
  box-shadow: 0 6px 32px rgba(180,142,92,0.09);
  border: 1px solid #f3e9e1;
  background: #fff;
  padding: 2rem 1.5rem;
  margin-bottom: 1.2rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 0;
  border: none;
  background: linear-gradient(90deg, #e7d7c1 0%, #e0e7ff 100%);
  color: #b48e5c;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(180,142,92,0.07);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: 1px solid #f3e9e1;
}
.btn:hover {
  background: linear-gradient(90deg, #fdf6f0 0%, #e0e7ff 100%);
  color: #7c6f57;
  box-shadow: 0 4px 16px rgba(180,142,92,0.13);
}
.btn-primary {
  background: linear-gradient(90deg, #b48e5c 0%, #fbbf24 100%);
  color: #fff;
  border: 1px solid #b48e5c;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #fbbf24 0%, #b48e5c 100%);
  color: #fff;
}

/* Typografie für Hochzeit */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #b48e5c;
  font-weight: 700;
  letter-spacing: -1px;
}

p, li, address, button, input, label {
  font-family: 'Quicksand', 'Inter', Arial, sans-serif;
}

/* Google Fonts einbinden */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Quicksand:wght@400;600&display=swap');
