/*
Theme Name: Kaschemmentour
Theme URI: https://www.kaschemmentour.de/
Author: Kaschemmentour
Description: Schlankes WordPress-Theme fuer die Kaschemmentour Koeln-Ehrenfeld Landingpage.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: kaschemmentour
*/

:root {
  --green: #132f25;
  --green-2: #1f4638;
  --cream: #f6efe0;
  --cream-2: #fff8ea;
  --brass: #f4bb3b;
  --red: #8e2f2f;
  --charcoal: #161817;
  --muted: #6f6659;
  --line: rgba(19, 47, 37, 0.14);
  --shadow: 0 28px 70px rgba(22, 24, 23, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 999px;
  color: var(--cream-2);
  background: rgba(19, 47, 37, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.quick-facts,
.section-heading,
.private-card,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--brass);
  font-weight: 950;
}

.nav-links {
  gap: 22px;
  color: rgba(255, 248, 234, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.nav-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a:hover {
  color: var(--brass);
}

.nav-cta {
  padding: 13px 19px;
  border-radius: 999px;
  color: var(--green);
  background: var(--cream-2);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: var(--cream-2);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(4, 8, 6, 0.86), rgba(9, 15, 12, 0.38) 50%, rgba(4, 8, 6, 0.24)),
    var(--hero-image) center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 70%, rgba(244, 187, 59, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.2), rgba(8, 12, 10, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 0;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--brass);
  font-size: clamp(54px, 6.6vw, 96px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--cream-2);
}

h2 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 248, 234, 0.9);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 750;
  line-height: 1.22;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--green);
  background: var(--brass);
}

.secondary {
  color: var(--cream-2);
  border-color: rgba(255, 248, 234, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.secondary.dark {
  color: var(--green);
  border-color: rgba(19, 47, 37, 0.24);
  background: var(--cream-2);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.quick-facts {
  width: 100%;
  flex-wrap: wrap;
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, 0.1);
  border-radius: 0;
  background: rgba(19, 47, 37, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.quick-facts div {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  flex: 1 1 180px;
  min-height: 94px;
  padding: 22px;
  border-right: 1px solid rgba(255, 248, 234, 0.16);
}

.quick-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 248, 234, 0.6);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0;
  color: var(--brass) !important;
}

.fact-icon svg,
.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-facts dd {
  margin: 0;
  color: var(--cream-2);
  font-size: 20px;
  font-weight: 950;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.9fr 1fr;
  gap: 0;
  width: 100%;
  padding: 0 max(20px, calc((100% - 1280px) / 2));
  background: var(--cream-2);
  box-shadow: 0 -1px 0 rgba(19, 47, 37, 0.12) inset;
}

.home-card {
  min-height: 345px;
  padding: 34px 28px;
  border-right: 1px solid rgba(19, 47, 37, 0.14);
}

.home-card:last-child {
  border-right: 0;
}

.home-card .section-label {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.home-card .section-label::after {
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 14px;
  background: var(--brass);
  content: "";
}

.home-card h2 {
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 1.1;
  text-transform: none;
}

.home-card p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.55;
}

.intro-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-card .button {
  width: auto;
  min-height: 48px;
  margin-top: auto;
  padding: 0 20px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 32px;
  font-size: 15px;
  line-height: 1.35;
}

.list-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--brass);
}

.list-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-photo,
.cheers-photo {
  min-height: 122px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 47, 37, 0), rgba(19, 47, 37, 0.18)),
    var(--hero-image) center / cover;
}

.mini-photo {
  margin-top: 18px;
}

.cheers-photo {
  min-height: 96px;
  margin: 20px 0 14px;
  background-position: 72% 70%;
}

.date-list {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
}

.date-list a {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(19, 47, 37, 0.12);
  border-radius: 8px;
  background: rgba(246, 239, 224, 0.48);
}

.date-list strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--cream-2);
  background: var(--green);
  font-size: 18px;
  text-transform: uppercase;
}

.date-list span {
  color: var(--charcoal);
  font-weight: 850;
  line-height: 1.2;
}

.date-list small {
  color: var(--muted);
  font-size: 13px;
}

.date-list b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--brass);
}

.embed-note {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.section-heading p,
.booking-copy p,
.private p,
.faq p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.section-heading {
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 38px;
}

.section-heading > p {
  max-width: 430px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.booking-panel,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.72);
}

.feature-card {
  min-height: 280px;
  padding: 28px;
}

.icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--brass);
  background: transparent;
  font-weight: 950;
}

.feature-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 96px max(20px, calc((100% - 1160px) / 2));
  background: var(--green);
}

.booking-band h2,
.booking-band p {
  color: var(--cream-2);
}

.booking-band p {
  max-width: 560px;
  color: rgba(255, 248, 234, 0.74);
}

.booking-panel {
  padding: 18px;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.eventbrite-placeholder,
.eventbrite-embed {
  padding: 30px;
  border: 2px dashed rgba(19, 47, 37, 0.22);
  border-radius: 8px;
}

.eventbrite-placeholder span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cream-2);
  background: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.eventbrite-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.05;
}

.eventbrite-placeholder p {
  color: var(--muted);
}

.full {
  width: 100%;
}

.audience {
  padding-bottom: 48px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-2);
  font-weight: 900;
}

.private {
  padding-top: 48px;
}

.private-card {
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(244, 187, 59, 0.96), rgba(255, 248, 234, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(142, 47, 47, 0.22), transparent 30%);
}

.private-card h2 {
  max-width: 720px;
}

.private-card .section-label {
  color: var(--green);
}

.private-card .section-label::after {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 12px;
  background: var(--red);
  content: "";
}

.private-card p {
  max-width: 690px;
}

.faq {
  padding-top: 72px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

details {
  padding: 24px;
}

summary {
  cursor: pointer;
  color: var(--green);
  font-size: 20px;
  font-weight: 950;
}

summary::marker {
  color: var(--red);
}

details p {
  margin: 18px 0 0;
  font-size: 16px;
}

.site-footer {
  justify-content: center;
  gap: 18px;
  padding: 34px 20px;
  color: var(--cream-2);
  background: var(--charcoal);
}

.site-footer a {
  color: var(--brass);
  font-weight: 950;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, 680px);
    padding-top: 132px;
  }

  .quick-facts {
    margin-top: 46px;
  }

  .section,
  .booking-band {
    width: min(100% - 28px, 680px);
    padding: 70px 0;
  }

  .home-grid,
  .feature-grid,
  .booking-band,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-grid {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-card {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(19, 47, 37, 0.14);
  }

  .section-heading,
  .private-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-band {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 16px;
  }

  .nav-cta {
    padding: 12px 15px;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    overflow-wrap: anywhere;
    font-size: 43px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .quick-facts div {
    flex-basis: 50%;
    min-height: 88px;
    padding: 18px;
  }

  .private-card {
    padding: 28px;
  }
}
