:root {
  --bg-dark: #0a0a0a;
  --bg-gray: #1a1a1a;
  --bg-light: #262626;
  --accent: #ff6b35;
  --accent-hover: #ff8c42;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --text-muted: #666666;
  --border: rgba(255, 107, 53, 0.2);
  --radius: 12px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--accent-hover);
}
a.btn:hover {
  text-decoration: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 800;
}
.navbar .logo-die {
  color: var(--text-white);
}
.navbar .logo-knaben {
  color: var(--accent);
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.navbar .nav-links a {
  color: var(--text-gray);
  font-weight: 500;
}
.navbar .nav-links a:hover {
  color: var(--text-white);
}
.navbar .nav-links a.btn-primary {
  color: var(--bg-dark);
}
.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.navbar .menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  color: var(--bg-dark) !important;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 107, 53, 0.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 107, 53, 0.03) 50px, rgba(255, 107, 53, 0.03) 51px);
  animation: wave 20s linear infinite;
  opacity: 0.3;
}
.hero::after {
  background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 140, 66, 0.02) 50px, rgba(255, 140, 66, 0.02) 51px);
  animation: wave 25s linear infinite reverse;
}
@keyframes wave {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-tagline {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  position: relative;
}
.hero-title .text-white {
  color: var(--text-white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.hero-title .text-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), #ffb84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  position: relative;
  display: inline-block;
}
.hero-title .text-accent::after {
  content: "KNABEN";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 6rem 0;
}
.section-dark {
  background: var(--bg-gray);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-dark) 100%);
}
.page-header h1 {
  margin-bottom: 0.5rem;
}
.page-header .page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.shows-list {
  max-width: 700px;
  margin: 0 auto;
}

.show-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.show-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}
.show-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}
.show-card:hover::before {
  left: 100%;
}
.show-card .show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}
.show-card .show-date .show-day {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.show-card .show-date .show-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}
.show-card .show-info {
  flex: 1;
}
.show-card .show-info h3 {
  margin-bottom: 0.25rem;
}
.show-card .show-info .show-venue {
  color: var(--text-muted);
  margin: 0;
}

.about-preview {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-preview p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content h2 {
  margin-top: 2.5rem;
  color: var(--accent);
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.info-box {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
}
.info-box h3 {
  color: var(--accent);
}
.info-box:hover {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(26, 26, 26, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-info > p {
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.contact-method a, .contact-method span {
  color: var(--text-gray);
}
.contact-method a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  color: var(--text-white);
  font-family: inherit;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(160, 160, 160, 0.5);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.gallery-intro p {
  font-size: 1.1rem;
}

.event-section {
  margin-bottom: 3rem;
}

.event-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.event-header .event-icon {
  font-size: 2rem;
  line-height: 1;
}
.event-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-white);
  flex: 1;
}
.event-header .event-date {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.2) 0%, transparent 50%, rgba(255, 140, 66, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.3);
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-image:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}
.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(26, 26, 26, 0.4);
  border-radius: var(--radius);
  border: 2px dashed rgba(255, 107, 53, 0.3);
}
.gallery-empty code {
  background: rgba(10, 10, 10, 0.8);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: var(--accent);
}

.video-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.video-section > p {
  text-align: center;
  margin-bottom: 2rem;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: rgba(38, 38, 38, 0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 107, 53, 0.3);
}
.video-placeholder span {
  font-size: 1.5rem;
  color: rgba(255, 107, 53, 0.6);
}

.hero-v2 .hero-subtitle {
  max-width: 720px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: rgba(26, 26, 26, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.stat-item strong {
  display: block;
  color: var(--text-white);
  font-size: 1.2rem;
}
.stat-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.next-show-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
@media (max-width: 900px) {
  .next-show-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.next-show-date {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #111;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  min-width: 78px;
  text-align: center;
}
.next-show-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.next-show-date .month {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.next-show-info p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(26, 26, 26, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.feature-card h3 {
  margin-bottom: 0.5rem;
}
.feature-card p {
  margin: 0;
}

.booking-strip {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 140, 66, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .booking-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}
.booking-strip-inner h2 {
  margin-bottom: 0.4rem;
}
.booking-strip-inner p {
  margin: 0;
}

.footer {
  background: var(--bg-gray);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer-brand .logo-die {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}
.footer-brand .logo-knaben {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}
.footer-brand p {
  margin-top: 0.5rem;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-gray);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--bg-dark);
}
.footer-social a svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .navbar .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .navbar .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu-toggle {
    display: flex;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .show-card {
    flex-direction: column;
    text-align: center;
  }
  .show-card .show-date {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */