/* ============================================
   10 STRINGS – Farmer Theme
   ============================================ */

:root {
  --color-hay:       #e8c547;
  --color-hay-dark:  #c9a832;
  --color-barn-red:  #a63d2f;
  --color-barn-dark: #7a2e24;
  --color-wood:      #5c3d2e;
  --color-wood-light:#8b6347;
  --color-grass:     #4a7c3f;
  --color-grass-light:#6b9e5a;
  --color-cream:     #faf6ee;
  --color-cream-dark:#ede4d3;
  --color-soil:      #3d2b1f;
  --color-text:      #2c1e14;
  --color-text-muted:#6b5744;

  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 20px rgba(60, 43, 31, 0.15);
  --shadow-lg:    0 8px 40px rgba(60, 43, 31, 0.25);
  --transition:   0.25s ease;

  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-barn-red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-barn-dark);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-cream-dark);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232, 197, 71, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 124, 63, 0.06) 0%, transparent 50%);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-wood);
  margin-bottom: 1rem;
  position: relative;
}

.section__title--center {
  text-align: center;
}

.section__title--center::after {
  content: '🌾';
  display: block;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-barn-red), var(--color-barn-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(166, 61, 47, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(166, 61, 47, 0.45);
  color: #fff;
}

.btn--full {
  width: 100%;
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--color-hay);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-wood);
}

.nav__logo:hover {
  color: var(--color-barn-red);
}

.nav__logo-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-wood);
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  background: var(--color-hay);
  color: var(--color-soil);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-wood);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #2c1e14;
  background-size: cover;
  /* Gesichter/Hüte oben – nicht mittig abgeschnitten */
  background-position: center 8%;
  background-repeat: no-repeat;
}

/* Schmale Screens: ganzes Bandfoto zeigen (sonst fallen Personen links/rechts weg) */
@media (max-width: 900px) {
  .hero__bg {
    background-size: contain;
    background-position: center center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 30, 20, 0.75) 0%,
    rgba(92, 61, 46, 0.55) 50%,
    rgba(74, 124, 63, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 0 6rem;
}

.hero__barn {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--color-hay);
  text-shadow: 3px 3px 0 var(--color-barn-dark), 0 0 40px rgba(232, 197, 71, 0.3);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero__tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #fff;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.hero__genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.genre-tag {
  background: rgba(232, 197, 71, 0.9);
  color: var(--color-soil);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--color-wood-light);
}

.about__decoration {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 100px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: float 5s ease-in-out infinite;
}

.about__lead {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.about__quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--color-hay), var(--color-hay-dark));
  border-radius: var(--radius);
  border-left: 5px solid var(--color-barn-red);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-soil);
}

/* ---- Gigs ---- */
.gigs__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1.75rem;
  padding: 1rem 2.25rem 0.85rem;
  background: linear-gradient(160deg, var(--color-wood-light) 0%, var(--color-wood) 100%);
  border: 3px solid var(--color-soil);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--color-soil);
  transform: rotate(-1.5deg);
  color: var(--color-cream);
}

.gigs__score-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-hay);
  text-shadow: 2px 2px 0 rgba(44, 30, 20, 0.45);
  font-variant-numeric: tabular-nums;
}

.gigs__score-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 0.2rem;
}

.gigs__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gigs__tab {
  padding: 0.7rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  border: 2px solid var(--color-wood-light);
  border-radius: 50px;
  cursor: pointer;
  color: var(--color-wood);
  transition: all var(--transition);
}

.gigs__tab:hover {
  border-color: var(--color-hay);
  background: var(--color-cream);
}

.gigs__tab--active {
  background: var(--color-grass);
  border-color: var(--color-grass);
  color: #fff;
}

.gigs__panel {
  display: none;
}

.gigs__panel--active {
  display: block;
}

.gig-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--color-grass);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gig-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.gig-card--past {
  border-left-color: var(--color-wood-light);
  opacity: 0.85;
}

.gig-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  padding: 0.5rem;
  background: var(--color-cream-dark);
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.2;
}

.gig-card__day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-barn-red);
}

.gig-card__month {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-wood);
}

.gig-card__year {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.gig-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-wood);
  margin-bottom: 0.15rem;
}

.gig-card__time {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ---- Gallery ---- */
.gallery__filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery__filter-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  background: #fff;
  border: 2px solid var(--color-cream-dark);
  border-radius: 50px;
  cursor: pointer;
  color: var(--color-wood);
  transition: all var(--transition);
}

.gallery__filter-btn:hover,
.gallery__filter-btn--active {
  background: var(--color-hay);
  border-color: var(--color-hay-dark);
  color: var(--color-soil);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(44, 30, 20, 0.85));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.gallery__item--hidden {
  display: none;
}

/* ---- Videos ---- */
.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.video-card__play:hover {
  background: rgba(0, 0, 0, 0.4);
}

.video-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 1.25rem 0.25rem;
  color: var(--color-wood);
}

.video-card__hint {
  padding: 0 1.25rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__list {
  list-style: none;
  margin-top: 1.5rem;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-cream-dark);
}

.contact__icon {
  font-size: 1.3rem;
}

/* ---- Social links ---- */
.social {
  margin-top: 2rem;
}

.social__title {
  font-family: var(--font-display);
  color: var(--color-barn-red);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.social__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.social__link:hover,
.social__link:focus-visible {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.05);
}

.social__icon {
  flex-shrink: 0;
}

.social__link--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 80%, #bc1888);
}

.social__link--youtube {
  background: #c4302b;
}

/* ---- Footer social ---- */
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer .site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-wood);
  background: var(--color-hay);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.site-footer .site-footer__social-link:hover,
.site-footer .site-footer__social-link:focus-visible {
  transform: translateY(-3px) rotate(-6deg);
  background: #fff;
  color: var(--color-barn-red);
}

.contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 3px solid var(--color-cream-dark);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-wood);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius);
  background: var(--color-cream);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-hay);
}

.contact__form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---- TYPO3 Form Framework (contact form) ---- */
.contact__form form {
  margin: 0;
}

.contact__form .form-navigation,
.contact__form .actions,
.contact__form-actions {
  margin-top: 0.5rem;
}

.contact__form .form-group.has-error input,
.contact__form .form-group.has-error textarea {
  border-color: #d9534f;
}

.form-group__error {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #d9534f;
}

.form-group__description {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.contact__form-note--success {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-wood);
  background: var(--color-cream);
  border: 2px dashed var(--color-hay);
  border-radius: var(--radius);
}

.contact__form .required-marker,
.contact__form label .required {
  color: #d9534f;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-wood);
  color: var(--color-cream);
  padding: 2rem 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__icon {
  filter: brightness(1.2);
}

.site-footer a {
  color: var(--color-hay);
}

.site-footer a:hover {
  color: #fff;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 30, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox__content img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__pdf {
  width: min(900px, 90vw);
  height: 78vh;
  border: 0;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow-lg);
}

.lightbox__pdf-fallback {
  margin: 0.75rem 0 0;
}

.lightbox__pdf-fallback a {
  color: #f5e6c8;
  text-decoration: underline;

}

.lightbox__content figcaption {
  color: #fff;
  font-family: var(--font-display);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next,
.video-modal__close {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover,
.video-modal__close:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox__close,
.video-modal__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---- Video Modal ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 30, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__content {
  width: min(900px, 92vw);
  aspect-ratio: 16/9;
}

.video-modal__content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 3px solid var(--color-hay);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav__toggle--open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__decoration {
    width: 70px;
    bottom: -15px;
    right: 10px;
  }

  .gig-card {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Cartoon / Farmer Extras ---- */
.section__title--cartoon {
  text-shadow: 2px 2px 0 var(--color-hay), 4px 4px 0 rgba(166, 61, 47, 0.25);
}

.hero__title--wiggle {
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1deg); }
}

.hero__barn--bounce {
  animation: barnBounce 2.5s ease-in-out infinite;
}

@keyframes barnBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

.hero__hay {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.7;
  z-index: 2;
  letter-spacing: 0.5rem;
  animation: haySway 4s ease-in-out infinite;
}

@keyframes haySway {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50%      { transform: translateX(-50%) rotate(2deg); }
}

.btn--cartoon {
  border: 3px solid var(--color-soil);
  box-shadow: 4px 4px 0 var(--color-soil);
  transform: rotate(-1deg);
}

.btn--cartoon:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 6px 6px 0 var(--color-soil);
}

.about__image--cartoon {
  border: 6px solid var(--color-hay);
  outline: 3px dashed var(--color-barn-red);
  outline-offset: 6px;
}

.about__decoration--float {
  animation: float 4s ease-in-out infinite, spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.gig-card {
  border: 2px dashed var(--color-hay-dark);
}

.gigs__empty {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  padding: 2rem;
}

.gig-card__note {
  font-size: 0.85rem;
  color: var(--color-grass);
  font-style: italic;
  margin-top: 0.25rem;
}

.gallery__item {
  border: 4px solid #fff;
  outline: 2px solid var(--color-hay);
}

.nav__logo-icon {
  animation: barnBounce 3s ease-in-out infinite;
}

.site-header {
  border-bottom: 4px dashed var(--color-hay);
}

.contact__form {
  border: 4px dashed var(--color-hay);
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
}

.genre-tag {
  border: 2px solid var(--color-soil);
  box-shadow: 2px 2px 0 rgba(44, 30, 20, 0.2);
  transform: rotate(-2deg);
}

.genre-tag:nth-child(even) {
  transform: rotate(2deg);
}

/* Klickbare Genre-Buttons & Bandmitglieder mit Muh-Sound */
.genre-tag--sound {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.genre-tag--sound:hover {
  background: var(--color-hay);
  box-shadow: 3px 3px 0 rgba(44, 30, 20, 0.28);
}

.genre-tag--sound:focus-visible,
.member-card--sound:focus-visible {
  outline: 3px solid var(--color-barn-red);
  outline-offset: 2px;
}

.member-card--sound {
  cursor: pointer;
}

.is-mooing {
  animation: moo-pop 0.4s ease;
}

@keyframes moo-pop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.15) rotate(-3deg); }
  60%  { transform: scale(0.96) rotate(2deg); }
  100% { transform: scale(1); }
}

.video-card {
  border: 3px solid var(--color-cream-dark);
}

.video-card:hover {
  border-color: var(--color-hay);
}

/* ============================================
   Bandmitglieder
   ============================================ */

.members {
  margin-top: 3.5rem;
}

.members__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-barn-red);
  margin-bottom: 2rem;
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.member-card {
  background: var(--color-cream);
  border: 3px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.member-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--color-hay);
  box-shadow: var(--shadow-lg);
}

.member-card__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--color-cream-dark);
}

.member-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.member-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  height: 100%;
}

.member-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-barn-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.member-card--guest {
  border-style: dashed;
  border-color: var(--color-grass-light);
}

.member-card__body {
  padding: 1rem 1.1rem 1.4rem;
}

.member-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.member-card__role {
  font-weight: 700;
  color: var(--color-barn-red);
  margin-bottom: 0.6rem;
}

.member-card__bio {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================
   Gig-Flyer
   ============================================ */

.gig-card--has-flyer {
  cursor: pointer;
  position: relative;
}

.gig-card--has-flyer:hover {
  border-color: var(--color-hay);
  transform: translateY(-3px) rotate(-0.5deg);
}

.gig-card__flyer-badge {
  display: inline-block;
  margin-left: auto;
  align-self: center;
  background: var(--color-hay);
  color: var(--color-soil);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

/* ============================================
   Fest / Countdown
   ============================================ */

.festival__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 2.5rem;
  align-items: center;
}

.festival__eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-grass);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.festival__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0.8rem 0 1.6rem;
  max-width: 38rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  max-width: 28rem;
}

.countdown__unit {
  background: var(--color-cream);
  border: 3px solid var(--color-cream-dark);
  border-radius: var(--radius);
  padding: 0.85rem 0.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}

.countdown__unit:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.countdown__unit:nth-child(even) {
  transform: rotate(1.5deg);
}

.countdown__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-barn-red);
  line-height: 1.1;
}

.countdown__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.countdown__done {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-grass);
  margin-bottom: 1.2rem;
}

.festival__weather {
  background: linear-gradient(135deg, #fff8dc 0%, var(--color-cream) 100%);
  border-left: 5px solid var(--color-hay);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.95rem 1.1rem;
  margin: 0 0 1.5rem;
  color: var(--color-text);
  max-width: 38rem;
  box-shadow: var(--shadow);
}

.festival__weather strong {
  color: var(--color-barn-red);
}

.festival__cta {
  display: inline-flex;
}

.festival__flyers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
  width: 100%;
}

.festival__flyer {
  margin: 0;
  text-align: center;
}

.festival__flyer-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 4px solid var(--color-wood);
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.festival__flyer:first-child .festival__flyer-btn {
  transform: rotate(-1.5deg);
}

.festival__flyer:last-child .festival__flyer-btn {
  transform: rotate(1.5deg);
}

.festival__flyer-btn:hover,
.festival__flyer-btn:focus-visible {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
  border-color: var(--color-hay);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.festival__flyer-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 420px;
  max-height: 640px;
  object-fit: contain;
  background: var(--color-cream-dark);
}

.festival__flyer-caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

@media (max-width: 800px) {
  .festival__grid {
    grid-template-columns: 1fr;
  }

  .festival__flyers {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .countdown {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .festival__flyers {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .festival__flyer-caption {
    font-size: 0.8rem;
  }
}
