/* donig.at – Benefiz (modern) */

:root {
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-text: #2c2a28;
  --color-text-muted: #5c5854;
  --color-accent: #7b5ea7;
  --color-accent-soft: #ede6f5;
  --color-accent-dark: #5c3f8a;
  --color-highlight: #c97b84;
  --color-border: #e8e2da;
  --color-footer: #f0ebe4;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --shadow-sm: 0 1px 3px rgba(44, 42, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 42, 40, 0.1);
  --radius: 12px;
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-highlight);
}

/* Header */

.site-header {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 55%, #9b7ec4 100%);
  color: #fff;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.site-brand {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 0.75rem;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.25;
}

.site-subtitle {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1.1rem;
  opacity: 0.92;
  font-style: italic;
}

/* Layout */

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

main {
  padding: 2.5rem 0 3rem;
}

section {
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 400;
  color: var(--color-accent-dark);
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent-soft);
}

/* Hero / Feature */

.hero {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: minmax(200px, 280px) 1fr;
  }
}

.hero-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--color-accent-dark);
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

.hero-thanks {
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.donation-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.donation-amount {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0.25rem 0 0.5rem;
}

.donation-label {
  margin: 0;
  color: var(--color-text-muted);
}

.donation-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Performers grid */

.performers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.performer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.performer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.performer-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.performer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-accent-soft);
}

.performer-info {
  padding: 1rem 1.15rem 1.15rem;
}

.performer-name {
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--color-text);
}

.performer-contact {
  font-size: 0.85rem;
  margin: 0;
}

.performer-contact a {
  color: var(--color-text-muted);
}

/* Info block */

.info-block {
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.info-block p {
  margin: 0 0 0.75rem;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block img.inline-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  border-radius: 4px;
}

/* Downloads */

.downloads-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.downloads-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.downloads-list a:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
}

.downloads-list .arrow {
  color: var(--color-accent);
  font-weight: 700;
}

.photo-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.photo-download img {
  width: 120px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.photo-download p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.photo-download .size-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Sponsors */

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.sponsor-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: box-shadow 0.2s ease;
}

.sponsor-card:hover {
  box-shadow: var(--shadow-md);
}

.sponsor-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sponsor-card img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Impressum */

.legal-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent-dark);
  margin: 0 0 1.5rem;
}

.legal-content h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin: 1.5rem 0 0.5rem;
}

.legal-content h3:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

/* Footer */

.site-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer a {
  color: var(--color-accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}
