/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
}

.nav-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eb2d34;
  white-space: nowrap;
  flex-shrink: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu li {
  white-space: nowrap;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #eb2d34;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #eb2d34;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section - Complete Redesign */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  scroll-margin-top: 0;
}

.banner-container {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* Add white background for the gap above banner */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  z-index: 2;
}

.banner-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Person Overlay - Elegant Positioning */
.person-overlay {
  position: absolute;
  bottom: 5%;
  right: 8%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.person-overlay:hover {
  transform: translateY(-10px) scale(1.05);
}

.person-image {
  height: 50vh;
  width: auto;
  max-width: 40vw;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6)) brightness(1.1)
    contrast(1.2);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.person-image::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(
    circle,
    rgba(235, 45, 52, 0.3) 0%,
    rgba(235, 45, 52, 0.1) 40%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Hero Content - Simplified */
.hero-content {
  position: absolute;
  top: 25vh;
  left: 5vw;
  z-index: 4;
  text-align: left;
  color: white;
  max-width: 55vw;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-content:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Decorative Elements */

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #eb2d34 0%, #ff6b6b 50%, #eb2d34 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #eb2d34, #ff6b6b);
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  scroll-margin-top: 60px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
  text-align: left;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #eb2d34;
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.01s;
}

.about-text.typed {
  opacity: 1;
  animation: fadeInText 0.5s ease-out forwards;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth word fade-in animation */
@keyframes wordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-word {
  display: inline-block;
  animation: wordFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.image-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
}

.placeholder-content {
  position: relative;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Spielplan Section */
.spielplan {
  padding: 80px 0;
  background: white;
  scroll-margin-top: 60px;
}

.spielplan .section-title {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.spielplan .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #eb2d34;
  border-radius: 2px;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.date-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 150px;
}

.date-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.date-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eb2d34;
  margin-bottom: 0.5rem;
}

.date-info p {
  color: #666;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* Past date styling */
.date-card.past-date {
  opacity: 0.5;
  background: #f0f0f0;
}

.date-card.past-date .date-info h3 {
  color: #999;
}

.date-card.past-date .date-info p {
  color: #999;
}

.date-card.past-date:hover {
  transform: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Past Dates Button */
.past-dates-btn {
  display: inline-block;
  background: none;
  color: #666;
  padding: 0;
  border: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 0.95rem;
  font-style: italic;
  cursor: pointer;
  transition: color 0.3s ease;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.past-dates-btn::after {
  content: " ›";
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.3rem;
  font-style: normal;
}

.past-dates-btn:hover {
  color: #eb2d34;
  background: none;
  transform: none;
  box-shadow: none;
}

.past-dates-btn:hover::after {
  transform: translateX(3px);
}

.past-dates-btn:active {
  transform: none;
}

.past-dates-btn.expanded::after {
  content: " ›";
  transform: rotate(90deg);
}

.past-dates-btn.expanded:hover::after {
  transform: rotate(90deg) translateX(3px);
}

/* Upcoming Info Text */
.upcoming-info {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  padding: 0 2rem;
}

/* Main Ticket Button */
.ticket-section {
  text-align: center;
  margin-top: 2rem;
}

.main-ticket-btn {
  display: inline-block;
  background: #eb2d34;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(235, 45, 52, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-ticket-btn:hover {
  background: #c41e3a;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(235, 45, 52, 0.4);
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #eb2d34;
  border-radius: 2px;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer a {
  color: #eb2d34;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

/* Simple animations only */

/* Desktop-specific adjustments */
@media (min-width: 769px) {
  .hero-content {
    top: 30vh;
    left: 5vw;
    max-width: 50vw;
  }

  .person-image {
    height: 50vh;
    max-width: 40vw;
  }

  .person-overlay {
    bottom: 10vh;
    right: 5vw;
  }
}

/* Responsive Design */
/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 3vw;
  }

  .nav-logo span {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }

  .nav-logo span {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .nav-menu {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .nav-container {
    padding: 0 8px;
  }

  .nav-logo span {
    font-size: 0.85rem;
  }

  .nav-menu {
    gap: 0.6rem;
  }

  .nav-link {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .banner-container {
    top: 80px;
    height: calc(100vh - 80px);
    background: white;
  }

  .hero-content {
    top: calc(80px + 12vh);
    left: 5vw;
    max-width: 65vw;
    padding: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .person-image {
    height: 30vh;
    max-width: 45vw;
  }

  .person-overlay {
    bottom: 8vh;
    right: 5vw;
  }

  .upcoming-info {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .banner-container {
    top: 80px;
    height: calc(100vh - 80px);
    background: white;
  }

  .hero-content {
    top: calc(80px + 8vh);
    left: 3vw;
    max-width: 80vw;
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .about {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .placeholder-icon {
    font-size: 3rem;
  }

  .person-image {
    height: 25vh;
    max-width: 40vw;
  }

  .person-overlay {
    bottom: 6vh;
    right: 3vw;
  }

  .upcoming-info {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: #f8f9fa;
  scroll-margin-top: 60px;
}

.gallery .section-title {
  margin-bottom: 3rem;
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: stretch;
}

.gallery-left {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.gallery-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-left img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-right {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  align-content: space-between;
  width: 100%;
  height: 100%;
}

.gallery-grid > * {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery {
    padding: 60px 0;
  }

  .gallery-content {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.about-image img {
  max-height: 60vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) brightness(1.2);
  position: relative;
}
