@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');
}



html, body {
    font-family: Arial, sans-serif;
    background-color: #f7e794;
    color: #000;
    margin: 0;
    padding: 0;
    text-align: center;
	overflow-x: hidden;
  }
  
/* Fix horizontal scroll without breaking vertical scroll */
html {
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden; /* Only hides horizontal scroll */
  overflow-y: auto; /* Keeps vertical scroll working */
  position: relative;
}


* {
  box-sizing: border-box;
 }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
a {
  cursor: url('svgs/cursor.svg') 8 0, pointer;
  cursor: -webkit-image-set(url('svgs/cursor.svg') 1x) 8 0, pointer; /* Safari fix */
}
  
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(208, 255, 190, 0.9);
    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;
}

/* Hero Section */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media.use-video .hero-video {
  display: block;
}

.hero-media.use-video .hero-image {
  display: none;
}

/* Default state - video visible */
.hero-video {
  display: block;
}

.hero-image {
  display: none;
}

/* When video is toggled off */
.hero-media.use-image .hero-video {
  display: none;
}

.hero-media.use-image .hero-image {
  display: block;
}

/* When video is toggled on */
.hero-media.use-video .hero-video {
  display: block;
}

.hero-media.use-video .hero-image {
  display: none;
}

/* Toggle switch styling */
.hero-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-family: sans-serif;
  padding: 10px 15px;
  cursor: pointer;
  }

.label-text {
  font-size: 0.9rem;
  color: #333;
}

/* Toggle switch */
.switch {
  position: relative;
  width: 40px;
  height: 20px;
}

.switch input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}


.slider {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.switch, .slider {
  pointer-events: auto !important;
}

input:checked + .slider {
  background-color: #3b7942;
}

input:checked + .slider:before {
  transform: translateX(20px);
}
.hero-toggle {
  position: absolute;
  top: auto;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
.label-text {
  color: white;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bandfotos/Band2_uncut.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Mobile positioning for toggle */
@media (max-width: 768px) {
  .hero-toggle {
    top: auto;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-toggle .label-text {
    color: white;
    order: -1; /* Move label above toggle */
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Make header transparent when over hero */
.main-header.transparent {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.main-header.transparent .logo,
.main-header.transparent .desktop-nav li a,
.main-header.transparent .menu-toggle {
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Hover state (dark text) */
.main-header.transparent .desktop-nav li a:hover,
.main-header.transparent .menu-toggle:hover {
  color: purple; /* Dark color from your palette */
  text-shadow: none;
}

/* 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;
}

/* Adjust content spacing */
main {
  padding-top: 20em; /* Remove previous padding */
}

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: 300px;
  margin: 0.5rem 0;
  transition: width 0.8s ease;
  transform: scale(1.8);
}

.main-header.scrolled .logo {
  width: 200px;
}
  /* Desktop nav */
  .desktop-nav {
    margin: 0.5rem 0;
    display: block;
  }
  
  .desktop-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .desktop-nav li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
    width: fit-content;
    margin-right: 0.5rem;
  }
  
  .desktop-nav li a:hover {
    color: white;
  }
  
  /* Mobile hamburger toggle */
  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    color: rgb(0, 0, 0);
  }

  
  
/* Mobile Navigation */
.mobile-nav {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
  background-color: rgb(24, 27, 24);
  position: absolute;
  top: 100%;
  right: 0em;
  z-index: 9999;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 20px;
}

/* When active */
.mobile-nav.active {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0s; /* override the hide delay */
}


/* Styling the inner list */
.mobile-nav ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav li {
  margin: 0.5rem 0;
}

.mobile-nav a {
  color: rgb(255, 243, 243);
  text-decoration: none;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeIn 0.4s ease-in-out forwards;
  animation-delay: 0.1s;
  opacity: 1;
}

.mobile-nav.active {
  max-height: 500px; /* adjust depending on how tall the menu needs to be */
}

.mobile-nav.active ul {
  animation: fadeInLinks 0.4s ease-in-out forwards;
}

@keyframes fadeInLinks {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.mobile-nav a:hover {
    color: rgb(253, 255, 155);
}
  
.main-header.scrolled .desktop-nav {
  display: none;
}

/* Show hamburger when scrolled past first section */
.main-header.scrolled .menu-toggle {
    display: block;
}

.main-header.scrolled .mobile-nav.active {
  display: flex;
}

/* Keep mobile nav always visible on mobile */
@media (max-width: 768px) {
  .mobile-nav {
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
    background-color: black;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    text-align: center;
    overflow: hidden;
    border-radius: 0px;
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .main-header {
    padding: 0.1rem 1rem; /* Reduced vertical padding */
    min-height: auto; /* Remove any minimum height */
  }
  .mobile-nav li {
    margin: 1rem 0;
    text-align: center;
  }

  .mobile-nav a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInLinks 0.4s ease-in-out forwards;
  }
  
  .mobile-nav.active {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0s; /* override the hide delay */
  }
  
  .mobile-menu a {
    display: block;
    padding: 0.75rem 0;
  }
  .hero-image {
    object-fit: cover; /* Switch to cropping on mobile if needed */
  }
  .main-header .menu-toggle {
      display: block;
  }
  main {
      padding-top: 100px; /*slightly less on mobil */
  }
  
  .logo {
      width: 270px;
      position: relative;
      transform: scale(0.8);
  }
  

  
  .menu-toggle {
    position: relative;
    right: auto;
    top: -0.9em;
    align-self: center;
    transition: transform 0.3s ease;
  }
  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Add this */
  }

  .main-header.scrolled .mobile-nav.active {
    display: flex;
}
.main-header.scrolled {
  height: 108px; /* Adjust this value to make it shorter (original is likely ~80px) */
}

/* Ensure logo fits properly in shorter header */
.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}
}

  /* General layout styles (optional keep) */
main {
  padding-top: 120px; /* This creates space below the fixed header */
  padding: 2rem;
}
  
section {
  padding: 2rem;
  margin-bottom: 0; /* Adjust as needed */
  font-family: Cal_sans, sans-serif;
}
/* === New Single Section === */

/* New Single Section */  

.new-single {
  padding: 4rem 2rem;
  background-color: #3b7942;
  text-align: center;
}


.single-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

@media (min-width: 768px) {
  .single-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
}

/* Vinyl Record Styles */
.vinyl-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.vinyl {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #333 0%, #111 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}

.vinyl-cover {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  top:5%;
  left: 5%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.2);
}

.vinyl-center {
  position: absolute;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.1);
}

.vinyl::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at center, transparent 45%, rgba(255,255,255,0.1) 45.5%, transparent 46%),
    repeating-radial-gradient(circle at center, transparent 0%, transparent 3%, rgba(255,255,255,0.05) 3.5%, rgba(255,255,255,0.05) 4%, transparent 4.5%);
  border-radius: 50%;
}

.vinyl.playing {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Player Controls */
.player-controls {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.player-controls h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fffb96;
}

.progress-container {
  width: 100%;
  margin: 1.5rem 0;
}

.progress-bar {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #ddd;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #fffb96;
  margin-top: 0.5rem;
}

.play-btn {
  background-color: black;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

.play-btn:hover {
  background-color: #2d5e33;
  transform: scale(1.05);
}

.play-btn.playing::before {
  content: "❚❚";
  font-size: 1.2rem;
}
/* Stream Now Section */
.stream-now {
  margin-top: 3rem;
  text-align: center;
}

.stream-now h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fffb96;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stream-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.platform-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.platform-link:hover {
  transform: translateY(-5px);
}

.platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 10px;
  width: 100px;
  transition: all 0.3s ease;
}


.platform-icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.platform-icon span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}



/* Responsive adjustments */
@media (max-width: 600px) {
  .stream-platforms {
    gap: 0.5rem;
  }
  
  .platform-icon {
    width: 80px;
    padding: 0.75rem;
  }
  
  .platform-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .platform-icon span {
    font-size: 0.8rem;
  }
}
/* === Concerts Section === */
.Dates {
  padding: 2em 1em;
  max-width: 900px;
  margin: 0 auto;
}

.Dates h2 {
  font-size: 2rem;
  margin-bottom: 1em;
  text-align: center;
  font-family: Cal_sans, sans-serif;
  color: #2d3748;
}

.Dates ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.Dates li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em;
  margin-bottom: 0.75em;
  background-color: #e3ecff;
  border-radius: 3px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.Dates li:hover {
  background-color: #c8d0e0;
  transform: translateY(-2px);
}

.concert-text {
  flex: 1 1 70%;
  font-size: 1rem;
}

.tickets-btn {
  background-color: #5ec33f;
  color: rgb(255, 255, 255);
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: url('svgs/cursor2.svg') 8 0, pointer;
}

.free-btn {
  background-color: #5ec33f;
  color: rgb(255, 255, 255);
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  
}

.soon-btn {
  background-color: #5ec33f;
  color: rgb(255, 255, 255);
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.soldout-btn {
  background-color: #5ec33f;
  color: rgb(255, 255, 255);
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.tickets-btn:hover {
  background-color: #5ec33f;
  color: white;
  transform: scale(1.05);
}
  .collage {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .collage img {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }

/* Merch Section */
/* Full-width merch showcase */
.merch-showcase {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 3rem 0 4rem;
  background: rgba(59, 121, 66, 0.95);
  color: white;
  text-align: center;
  overflow: hidden;
  font-family: Cal_sans, sans-serif;
}

/* Header styles */
.merch-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.merch-header h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.merch-subtitle {
  font-size: 1.1rem;
  color: #fffb79;
  opacity: 0.9;
}

/* Full-width featured image (bottom cropped) */
.featured-image {
  width: 100%;
  height: 90vh;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.featured-image img {
  width: 99vw;
  object-fit: cover;
}

/* 2x3 grid layout */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.merch-item {
  aspect-ratio: 1/1; /* Perfect squares */
  overflow: hidden;
}

.merch-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.merch-item:hover img {
  transform: scale(1.05);
}

/* Heart styles */
.heart-emoji {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(-50%, -50%) scale(0);
  left: 50%;
  top: 50%;
}

.heart-emoji.visible {
  width: 90px;
  height: 90px;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Animation for heart */
@keyframes heartBeat {
  0% { transform: translate(-50%, -50%) scale(0.8); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.heart-emoji.visible {
  animation: heartBeat 0.8s;
}

/* Footer styles */
.merch-footer {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-content-wrapper {
  display: flex;
  align-items: flex-end; /* Align to bottom */
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-text {
  flex: 1;
}

.footer-svg-container {
  display: flex;
  align-items: left;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-svg {
  width: 16%;
  min-width: 50px;
  transform: scaleX(-1) rotate(30deg);
  height: auto;
  position: absolute;
  right: 120%;
}

/* Adjust text alignment when SVG is present */
.merch-footer p {
  text-align: center;
  margin: 0;
}


.merch-footer a {
  color: #00fea9;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.merch-footer a:hover {
  color: #a8dadc;
}

.merch-note {
  font-size: 0.9rem;
  color: #ffffff;
  font-style: italic;
  margin-top: 1rem;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-image {
    height: 86vh;
  }
}

@media (max-width: 600px) {
  .merch-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-top: -10rem;
  }
  
  .featured-image {
    height: 50vh;
  }
  
  .merch-header h2 {
    font-size: 2rem;
  }
}




.slit-section {
  position: relative;
  padding-top: 2rem;
  background:url('images/bandfotos/Band1.jpg');    
  background-size: cover;
  background-attachment: fixed;
  background-color: #007b0c;
  background-position: center 5em;
  background-repeat: no-repeat;
}

.slit-content {
  position: relative;
  padding-top: 13em;
  opacity: 0;
  background-color: #f7e794;
}

@media (max-width: 768px) {
.slit-section {
  position: relative;
  padding-top: 3rem;
  background:url('images/bandfotos/Band5_mobile.jpg');    
  background-size: cover;
  background-attachment: fixed;
  background-color: #f7e794;
  background-position: center 4em;
  background-repeat: no-repeat;
}

}

/* Simple Contact Section */
/* Contact Form Styles */
/* Modern Contact Form Styles */
.container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(59, 121, 66, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Cal_sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(208, 255, 190, 0.1) 0%, rgba(255, 251, 150, 0.05) 70%);
  z-index: -1;
}

.container h1 {
  text-align: center;
  color: #3b7942;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}



.form-group {
  margin-bottom: 1.8rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row .col {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(59, 121, 66, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

.form-control:focus {
  outline: none;
  border-color: #3b7942;
  box-shadow: 0 0 0 4px rgba(59, 121, 66, 0.2);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3b7942, #2d5e33);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 121, 66, 0.2);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-1px);
}

#contact-status {
  display: none;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  animation: fadeIn 0.5s ease-out;
}

#contact-status.success {
  display: block;
  background-color: rgba(208, 255, 190, 0.5);
  color: #2d5e33;
  border: 1px solid #3b7942;
}

#contact-status.error {
  display: block;
  background-color: rgba(255, 200, 200, 0.5);
  color: #8b0000;
  border: 1px solid #ff6b6b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating label effect */
.input-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.input-group label {
  position: absolute;
  top: 14px;
  left: 18px;
  color: rgba(59, 121, 66, 0.7);
  transition: all 0.3s ease;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 5px;
}

.input-group .form-control:focus + label,
.input-group .form-control:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: #3b7942;
  background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 2rem;
    margin: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
    margin: 1.5rem;
    border-radius: 12px;
  }
  
  .container h1 {
    font-size: 1.6rem;
  }
  
  .form-control {
    padding: 12px 14px;
  }
  
  .btn {
    padding: 14px;
  }
}

.about {
  font-size: 1.35em;
  margin-bottom: 1em;
  text-align: center;
  font-family: Cal_sans, sans-serif;
  color: #2d3748;
}

/* Band Carousel Styles */
.band-carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  color: #2d3748;
  justify-content: space-evenly;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 1rem;
}

.slide-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  height: 100%
}

.member-image {
  flex: 0 0 45%;
  height: 0;
  padding-bottom: 56.25%; /* 4:5 aspect ratio */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.member-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  text-align: justify;
  text-align-last: center;
}

.carousel-slide.active .member-text {
  opacity: 1;
  transform: translateX(0);
}

.member-text h4 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-family: 'Burra', sans-serif;
  color: #3b7942;
  text-align: center;
}

.member-text p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.member-svg {
  margin-top: auto;
  text-align: center;
}

.member-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.member-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #3b7942;
  border: none;
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: url('svgs/turtle_yellow_blue_thicc.svg') 8 0, pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -17px;
}

.next-btn {
  right: -17px;
}

.carousel-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(59, 121, 66, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #3b7942;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .member-image {
    flex: 0 0 auto;
    padding-bottom: 125%; /* Taller aspect ratio for mobile */
  }
  

  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .prev-btn {
    left: -10px;
  }
  
  .next-btn {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .member-text h4 {
    font-size: 1.5rem;
  }
  
  .member-text p {
    font-size: 1rem;
  }
  
  .member-icon {
    width: 50px;
    height: 50px;
  }
}
/* Data animate */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="left"] { transform: translateX(-50px); }
[data-animate="right"] { transform: translateX(50px); }
[data-animate="scale"] { transform: scale(0.95); }

[data-animate].animate {
  transform: translateX(0) scale(1);
}


/* Add this to your styles.css */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animated state - this applies to parent */
[data-animate-stagger].animate > * {
  opacity: 1;
  transform: translateY(0);
}

/* Individual delays for child elements */
[data-animate-stagger].animate > *:nth-child(1) { transition-delay: 0.1s; }
[data-animate-stagger].animate > *:nth-child(2) { transition-delay: 0.2s; }
[data-animate-stagger].animate > *:nth-child(3) { transition-delay: 0.3s; }
[data-animate-stagger].animate > *:nth-child(4) { transition-delay: 0.4s; }
[data-animate-stagger].animate > *:nth-child(5) { transition-delay: 0.5s; }
[data-animate-stagger].animate > *:nth-child(6) { transition-delay: 0.6s; }
[data-animate-stagger].animate > *:nth-child(7) { transition-delay: 0.7s; }
[data-animate-stagger].animate > *:nth-child(8) { transition-delay: 0.8s; }
[data-animate-stagger].animate > *:nth-child(9) { transition-delay: 0.9s; }
[data-animate-stagger].animate > *:nth-child(10) { transition-delay: 1.0s; }

/* Add these new mobile-specific adjustments */
  /* Socials Section */

.socials {
  padding: 1rem 2rem;
  text-align: center;
}

.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.title-wrapper h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin: 0;
  position: relative;
  font-family: Cal_sans, sans-serif;
}

.title-icon {
  width: 50px;
  height: 50px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  cursor: pointer;
  z-index: 1000;
}

.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;
  }
}

/* Newsletter section */

/* Newsletter Container */
.newsletter {
  max-width: 480px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Cal_sans', sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Title */
.newsletter h2 {
  margin: 0 0 1.5rem 0;
  color: #2d3748;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}

/* Input Fields */
.newsletter input[type="email"],
.newsletter input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.newsletter input[type="email"]:focus,
.newsletter input[type="text"]:focus {
  outline: none;
  border-color: #3b7942;
  box-shadow: 0 0 0 3px rgba(59, 121, 66, 0.1);
  background: white;
}

/* Consent Checkbox */
.consent {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 0.75rem;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3b7942;
  cursor: pointer;
}

.consent label {
  font-size: 0.9rem;
  color: #4a5568;
  cursor: pointer;
}

/* Submit Button */
.newsletter button {
  width: 100%;
  padding: 16px;
  background-color: #3b7942;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter button:hover {
  background-color: #2d5e33;
  transform: translateY(-1px);
}

.newsletter button:active {
  transform: translateY(0);
}

.newsletter button:disabled {
  background-color: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

/* 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;
  }
}

 
/* Footer section */

footer {
  background: linear-gradient(145deg, rgba(59, 121, 66, 0.95), #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;
  width: 100vw;
  overflow: hidden;
}

.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(-12%);
}

.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;
  }
  