@font-face {
  font-family: "Burra";
  src: url(fonts/Burra/Burra-Bold\ 2024-09-17\ 14_50_04.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Cal_sans";
  src: url(fonts/Cal_Sans/CalSans-Regular.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Comfortaa";
  src: url(fonts/Comfortaa/Comfortaa-VariableFont_wght.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}


body {
    font-family: Arial, sans-serif;
    background-color: #fffb96;
    color: #000;
    margin: 0;
    text-align: left;
  }
  
a {
  cursor: url('svgs/cursor.svg') 8 0, pointer;
}


  * {
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  

  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(59, 121, 66, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1002;
    transition: all 0.5s ease;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }

  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .logo-container {
    text-align: center;
    padding: 0.8rem 0;
  }

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
}

/* Scrolled state (reversed colors) */
.main-header:not(.transparent) .desktop-nav li a {
  color: black;
}
.main-header:not(.transparent) .desktop-nav li a:hover {
  color: white;
  padding: 5em;
}

/* Adjust content spacing */
main {
  padding-top: 20em; /* Remove previous padding */
  font-family: Arial, sans-serif;
  background-color: #fffb96;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: left;  
}

section:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

/* Transparent Header when hero is visible */
.main-header.transparent {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.main-header.transparent .desktop-nav li a,
.main-header.transparent .menu-toggle {
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
/* Farbe vom oberen balken wenn man runterscrolled*/
.main-header.scrolled {
  background-color: rgba(59, 121, 66, 0.95);
}


.logo {
  width: 200px;
  margin: 0.5rem 0;
  transition: width 0.8s ease;
  transform: scale(1.8);
}

.main-header.scrolled .logo {
  width: 200px;
}


  /* General layout styles (optional keep) */
main {
  padding-top: 120px; /* This creates space below the fixed header */
  padding: 5rem;
}
  
section {
  padding: 2rem;
  margin-bottom: 0; /* Adjust as needed */
  font-family: Cal_sans, sans-serif;
}
  
/* === Concerts Section === */
.Dates {
  padding: 2em 1em;
  max-width: 900px;
  margin: 0 auto;
}

.Dates h2 {
  font-size: 2rem;
  margin-bottom: 1em;
  text-align: center;
}


.title-icon:hover {
  transform: rotate(15deg) scale(1.5);
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0% { transform: rotate(15deg) scale(1.2); }
  50% { transform: rotate(15deg) scale(20); }
  100% { transform: rotate(15deg) scale(1.2); }
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: Burra, sans-serif;
}

.social-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-links li a:hover::before {
  opacity: 1;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links li a:hover .social-icon {
  transform: scale(1.2);
}

/* Individual social brand colors */
.social-links li:nth-child(1) a { color: #E1306C; } /* Instagram */
.social-links li:nth-child(2) a { color: #FF0000; } /* YouTube */
.social-links li:nth-child(3) a { color: #1DB954; } /* Spotify */
.social-links li:nth-child(4) a { color: #1877F2; } /* Facebook */
.social-links li:nth-child(5) a { color: #FC3C44; } /* Apple Music */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .title-wrapper {
    flex-direction: column;
  }
  
  .title-icon {
    margin-top: 1rem;
  }
}


/* Message Feedback */
#mj-message {
  margin: 1.5rem 0 0 0;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

#mj-message.visible {
  opacity: 1;
  max-height: 200px;
}

#mj-message.success {
  background-color: #f0fff4;
  color: #2f855a;
  border: 1px solid #c6f6d5;
}

#mj-message.error {
  background-color: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .newsletter {
    padding: 1.5rem;
    margin: 1.5rem;
  }
  
  .newsletter h2 {
    font-size: 1.5rem;
  }
  
  .newsletter input[type="email"],
  .newsletter input[type="text"] {
    padding: 12px 14px;
  }
}
/* Back to top button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  background-color: #109d00;
  color: white;
  display: none;
  cursor: pointer;
  z-index: 1001;
}

#backToTop:hover {
  background-color: #00832c;
}
/* Back Home section */
.backhome {
  text-align: center;
}

.backhome img {
  height: auto;
  width: 10%;
  transform: scaleX(-1) rotate(30deg);
}



/* Footer section */

footer {
  background: linear-gradient(145deg, #00ab2b, #00832e);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  padding: 1.5rem 2rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.logo-copyright {
  position: absolute;
  left: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center; /* Vertically center image + text */
  gap: 0.5rem;
}


.footer-image {
  width: 40px;
  height: 40px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-image:hover {
  transform: rotate(360deg) scale(2.2) translateY(-20%);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.4s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-links a:hover::after {
  width: 70%;
}

.footer-links a:active {
  transform: scale(0.95);
}

footer a:not(:last-child)::before {
  content: "|";
  position: absolute;
  right: -8px;
  color: rgba(0, 0, 0, 0.1);
}

footer p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .logo-copyright {
    position: static;
    align-items: center;
    margin-bottom: 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-links a:not(:last-child)::before {
    content: none; /* Remove vertical bar separator */
  }
}


  
  html {
    scroll-behavior: smooth;
  }
  