@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500&display=swap');

html, body {
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

html::-webkit-scrollbar {
    background: #000000; /* Purple thumb for visibility */
    scrollbar-width: auto; /* Firefox: Default width */
}

html::-webkit-scrollbar-thumb {
    background: #a359a0; /* Purple thumb for visibility */
    border-radius: 10px;
    z-index: 1002; /* Above top-menu (z-index: 5) */
}

html {
    scrollbar-width: auto; /* Firefox: Default width */
    scrollbar-color: #a359a0; /* Firefox: Purple thumb, transparent track */
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(241, 242, 109, 0.3);
    color: #333;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    padding-right: 0 !important; /* Prevent padding adjustments that some browsers do */
    overflow-x: hidden;
}

h1, h2, h3, .faq-question {
    font-family: 'Poppins', sans-serif;
}

.section {
    text-align: center;
    max-width: 100vw;
    overflow: visible; /* Ensure no clipping of content */
    box-sizing: border-box;
}

#home {
    position: relative;
    width: 100vw;
    overflow: visible;
    z-index: 2;
    margin-top: 40px; /* Match top-menu height */
    padding-bottom: 20px; /* Consistent padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    min-height: auto; /* Ensure minimum height based on content */
}
#home p {
font-size: 0.9em;
}
 
.inline-icon {
  height: 1.8em;
  vertical-align: middle;
}

#home::after {
    content: '';
    display: block;
    clear: both; /* Clearfix for floated children */
}


.sunburst {
  

     position: absolute;  /* was: relative */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* Put behind content */
    pointer-events: none;

}

  .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vw;
    transform: translate(-50%, -50%);
    animation: spin 40s linear infinite;
    opacity: 0.8;
  }

  .gradient-wrap {
    width: 100%;
    height: 50%;
    overflow: hidden;
  }

  .gradient-wrap:last-child {
    transform: rotate(180deg);
  }

  .gradient {
    width: 100%;
    height: 200%;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(241, 242, 109) 50%,
        transparent 100%
      ),
      linear-gradient(170deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(160deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(150deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(140deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(130deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(120deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(110deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(100deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(90deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(80deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(70deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(60deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(50deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(40deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(30deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(20deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%),
      linear-gradient(10deg, transparent 50%, #a359a0 50%, transparent 100%),
      linear-gradient(0deg, transparent 50%, rgba(241, 242, 109) 50%, transparent 100%);
  }

  .vignette {
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(circle, transparent 90%, rgba(241, 242, 109) 100%);
    width: 100%;
    height: 100%;
  }

  .sunburst-logo {

     position: static;
    transform: none;
    margin-bottom: 0;
    width: 350px;
    max-width: 55vw;
    height: auto;
    z-index: 5;
     

}

@media (max-width: 600px) {
    .sunburst-logo {
        max-width: 70vw;
        height: auto;
    }
}
.logo-bubble-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1003;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0px;
      z-index: 2; /* Above the background sunburst */

}

.speech-bubble {
    background-color: rgba(255, 255, 255);
    padding: 8px 12px;
    border: 1px solid #ccc;
    width: 80vw;
    max-width: 80vw;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: #000000;
    z-index: 1009;
    position: relative;
    margin-top: 0; /* Fixed px value to avoid viewport-dependent shifts */
    margin-bottom: 0;
    --zigzag-size: 4px;
    clip-path: polygon(
        0 var(--zigzag-size),
        calc(0% + var(--zigzag-size)) 0,
        calc(10% - var(--zigzag-size)) var(--zigzag-size),
        calc(10% + var(--zigzag-size)) 0,
        calc(20% - var(--zigzag-size)) var(--zigzag-size),
        calc(20% + var(--zigzag-size)) 0,
        calc(30% - var(--zigzag-size)) var(--zigzag-size),
        calc(30% + var(--zigzag-size)) 0,
        calc(40% - var(--zigzag-size)) var(--zigzag-size),
        calc(40% + var(--zigzag-size)) 0,
        calc(50% - var(--zigzag-size)) var(--zigzag-size),
        calc(50% + var(--zigzag-size)) 0,
        calc(60% - var(--zigzag-size)) var(--zigzag-size),
        calc(60% + var(--zigzag-size)) 0,
        calc(70% - var(--zigzag-size)) var(--zigzag-size),
        calc(70% + var(--zigzag-size)) 0,
        calc(80% - var(--zigzag-size)) var(--zigzag-size),
        calc(80% + var(--zigzag-size)) 0,
        calc(90% - var(--zigzag-size)) var(--zigzag-size),
        calc(90% + var(--zigzag-size)) 0,
        calc(100% - var(--zigzag-size)) var(--zigzag-size),
        100% var(--zigzag-size),
        calc(100% - var(--zigzag-size)) calc(0% + var(--zigzag-size)),
        100% calc(50% - var(--zigzag-size)),
        calc(100% - var(--zigzag-size)) calc(50% + var(--zigzag-size)),
        100% calc(100% - var(--zigzag-size)),
        calc(100% - var(--zigzag-size)) 100%,
        calc(90% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(90% - var(--zigzag-size)) 100%,
        calc(80% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(80% - var(--zigzag-size)) 100%,
        calc(70% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(70% - var(--zigzag-size)) 100%,
        calc(60% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(60% - var(--zigzag-size)) 100%,
        calc(50% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(50% - var(--zigzag-size)) 100%,
        calc(40% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(40% - var(--zigzag-size)) 100%,
        calc(30% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(30% - var(--zigzag-size)) 100%,
        calc(20% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(20% - var(--zigzag-size)) 100%,
        calc(10% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(10% - var(--zigzag-size)) 100%,
        calc(0% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        0 calc(100% - var(--zigzag-size))
    );
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 600px) {
    .sunburst .inner {
        width: 250vw; /* Increase size for mobile to hide edges */
        height: 250vw;
    }
}

@media (max-width: 400px) {
    .sunburst .inner {
        width: 250vw; /* Even larger for very small viewports */
        height: 250vw;
    }
}

.top-menu {
    max-width: 100vw; /* Use max-width to respect scrollbar space */
    width: 100%; /* Maintain full width within viewport */
    background-color: #7ed957;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Restore original alignment */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Keep the rest of the CSS unchanged */
.hamburger {
    cursor: pointer;
    display: flex; /* Always visible */
    flex-direction: column;
    justify-content: space-between;
    width: 20px; /* Smaller width */
    height: 12px; /* Smaller height */
}

.hamburger span {
    background-color: #000;
    height: 2px; /* Thinner lines */
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    opacity: 0;
}

.hamburger.active span:nth-child(4) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-items {
    display: none;
    position: absolute;
    top: 30px; /* Adjusted for smaller menu height */
    left: 0;
    background-color: #7ed957;
    width: 100%;
    max-width: 100vw; /* Respect scrollbar space */
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-items.active {
    display: block;
}

.menu-items li {
    padding: 10px 15px; /* Smaller padding */
}

.menu-items li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em; /* Smaller font size */
}

.menu-items li a:hover {
    color: #333;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1; /* Allow button-group to take available space */
    min-width: 200px; /* Prevent it from shrinking too much */
}

.media-left, .media-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent media elements from shrinking */
}

.side-image, .side-video {
    width: 150px;
    height: 100px;
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    display: block;
}

@media (max-width: 800px) {
    .media-left, .media-right {
        width: 100px;
        height: 70px;
    }
    .side-image, .side-video {
        width: 100px;
        height: 70px;
        max-width: 100px;
        max-height: 70px;
    }
}

@media (max-width: 600px) {
    .media-left, .media-right {
        display: none; /* Hide media elements on smaller screens */
    }
    .button-group {
        min-width: 100%; /* Full width on small screens */
    }
}

.highlight-date {
    font-size: 1.2em;
    color: #a359a0;
    background-color: rgba(241, 242, 109, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    display: inline-block;
    animation: pulseDate 2s ease-in-out infinite;
}

.highlight-info {
    font-size: 1.1em;
    color: #a359a0;
    background-color: rgba(241, 242, 109, 0.5);
    padding: 1px 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    display: inline-block;
    animation: pulseinfo 5s ease-in-out infinite;
    font-weight: bolder;
}

@keyframes pulseDate {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes pulseinfo {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .highlight-date {
        font-size: 1.05em;
        padding: 1px 4px;
    }
    .btn {
        width: 150px;
    }
    .highlight-info {
        font-size: 1.1em;
        padding: 1px 1px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 10px;
    background-color: #7ed957;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    width: 200px;
    text-align: center;
}

.btn:hover {
    background-color: #6bc146;
}

#sponsorinfo {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 5px 10px 5px 10px;
    box-sizing: border-box;
    margin: 0; /* Ensure it starts after #home */
    border-top: 3px solid #7ed957;
    border-bottom: 3px solid #7ed957;
    color: #333;
    font-family: 'Poppins', sans-serif;
    z-index: 1; /* Lower than #home */
    width: 100vw;
    position: relative;
}

/* Optional: Black background for tigerlogo.png */
#sponsorinfo ul li img[src="tigerlogo.png"] {
    background-color: #000000;
}

/* Style list items to prevent stacking */
#sponsorinfo ul li {
    margin: 5px 3px; /* Increased spacing for clarity */
    text-align: center;
    padding: 0px;
}

/* Ensure ul supports wrapping and spacing */
#sponsorinfo ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
    gap: 2px; /* Add gap for consistent spacing */
    padding: 0 5px 0 5px; /* Add more right padding, less left padding */
    justify-content: center; /* Change to center for balanced distribution */
}

.sponsor-list li.text-item h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3em;
    color: #a359a0;
    margin: 10px 0; /* Increased margin for spacing */
    line-height: 1.2;
    animation: pulse 2s ease-in-out infinite;
    margin-right: 10px;
}

.sponsor-list li.text-item h2 span {
    white-space: nowrap;
}

.sponsor-list li.text-item h2 .supporters {
    display: block;
}

.sponsor-list li.text-item p {
    font-size: 1em;
    margin: 10px 0;
}

#sponsorcontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

@media (max-width: 600px) {
    .sponsor-list li.text-item h2 {
        font-size: 1.8em;
    }
    .sponsor-list li.text-item p {
        font-size: 0.9em;
    }
    .sponsor-list li img {
        width: 100px;
        max-width: 110px;
        min-width: 80px;
    }
    .sponsor-list li img.img1 {
        width: 90px;
        max-width: 100px;
        min-width: 80px;
    }
    .sponsor-list li img.img2 {
        width: 120px;
        max-width: 130px;
        min-width: 110px;
    }
}

#eventinfo, #eventday {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2);
    position: relative;
    border: 3px solid #7ed957;
    color: #333;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    max-width: 85vw;
}

#eventinfo h2, #eventday h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3em;
    color: #a359a0;
    text-align: center;
    margin: 3px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

#eventinfo p,
#eventinfo ul,
#eventday ul {
    font-size: 0.9em;
    line-height: 1.7;
    margin: 15px 0;
    text-align: left;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

#eventinfo ul li,
#eventday ul li {
    position: relative;
    padding-left: 30px; /* Increase to shift text further right */
    margin-bottom: 10px;
    margin-left: 5px;
    text-align: left; /* Ensures list items are left-aligned */
}

#bulltickets::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullticket.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullfood::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullfood.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullkids::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullkids.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bulldisabled::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bulldisabled.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullupdated::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullupdated.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullmoreinfo::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullmoreinfo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullopening::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullopening.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullmap::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullmap.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullticketscan::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullticketscan.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullreentry::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullreentry.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullfood2::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullfood2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullbowls::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullbowls.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullwaste::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullwaste.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullwater::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullwater.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullalcohol::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullalcohol.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#bullpets::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    background-image: url('bullpets.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

#eventday ul li:has(.parkmap)::before {
    content: '';
}

#eventinfo a {
    color: #a359a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

#eventinfo a:hover {
    color: #7ed957;
    text-decoration: underline;
}

#eventinfo .btn {
    background-color: #a359a0;
    color: white;
    padding: 5px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin: 10px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#eventinfo .btn:hover {
    background-color: #8b4789;
    transform: scale(1.05);
}

.map-toggle {
    position: absolute; /* Positions button over the map */
    bottom: 10px; /* Distance from bottom of the map */
    right: 75px; /* Distance from right of the map */
    padding: 8px 15px;
    background-color: rgba(126, 217, 87, 0.8); /* Semi-transparent green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 11; /* Ensures button is above the map */
}

.map-toggle:hover {
    background-color: rgba(107, 193, 70, 0.8); /* Darker green on hover */
    transform: scale(1.05); /* Slight scale on hover */
}

@media (max-width: 600px) {
    #eventday .parkmap {
        max-width: 60vw; /* Slightly smaller on mobile for better fit */
    }
    #eventday .parkmap.enlarged {
        max-width: 70vw; /* Adjust for mobile */
        transform: scale(1.05); /* Slightly smaller scale for mobile */
    }
    .map-toggle {
        padding: 6px 12px; /* Smaller padding on mobile */
        font-size: 0.6em; /* Smaller font on mobile */
        bottom: 10px; /* Distance from bottom of the map */
        right: 10px; /* Distance from right of the map */
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    #eventinfo, #eventday {
        max-width: 92vw;
    }

    #eventinfo h2, #sponsorinfo h2, #eventday h2 {
        font-size: 1.8em;
    }

    #eventinfo p,
    #eventinfo ul, #sponsorinfo p, #sponsorinfo ul, #eventday p, #eventday ul {
        font-size: 0.9em;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#lineup {
    padding: 5px;
    position: relative;
    z-index: 3;
}

#lineupheader {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 5px;
    border-radius: 10px;
    margin: 10px auto;
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2);
    position: relative;
    border: 3px solid #7ed957;
    color: #333;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    min-width: 30vw;
    max-width: 35vw;
}

#lineupheader2 {
    margin: 10px auto;
    position: relative;
    color: #333;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    padding: 5vh 12vw;
    background-image: url('lineupann.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    max-width: 150px;
    min-height: 100px;
    max-height: 150px;
}

#lineupheader2 h4 {
    overflow: hidden;
    margin: 10px auto;
    animation: typing 2s steps(10, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

#lineup h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3em;
    color: #a359a0;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
    padding: 2px;
    margin: 0;
}

#lineup h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin: 1px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.carousel-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    height: auto;
    transition: height 0.3s ease;
    margin-bottom: 5px; /* Push About section down */
    min-height: 350px; /* Ensure space for short cards + dots */
}

.carousel {
    position: relative;
    width: 700%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: flex-start; /* Allow cards to size independently */
}

.carousel-radio {
    display: none;
}

.carousel-card {
    flex: 0 0 14.2857%; /* 100% / 7 */
    background: rgba(241, 242, 109, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto; /* Let content dictate height */
    min-height: 0; /* Allow shrinking */
    max-height: none;
    margin: 0 auto;
}

.carousel-card:hover {
    box-shadow: 0 6px 15px rgba(163, 89, 160, 0.4);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center images precisely */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-image.active {
    opacity: 1;
}

.card-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    min-width: 200px;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
}

.card-title {
    font-family: 'Poppins', sans-serif;
    color: #a359a0;
    font-size: 1.5em;
    margin: 0 0 5px; /* Reduced from 10px to 5px (50%) */
    text-align: center;
}

.card-bio {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin: 2px auto;
}

.card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #7ed957;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 7.5px; /* Reduced from 15px to 7.5px (50%) */
    font-family: 'Poppins', sans-serif;
    animation: pulseButton 2s ease-in-out infinite;
    transition: background-color 0.3s ease;
}

.card-link:hover {
    background-color: #6bc146;
}

@keyframes pulseButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.carousel-arrows {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 201;
    pointer-events: none;
}

.carousel-arrow {
    pointer-events: auto;
    position: fixed;
    background: #7ed957;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1.5em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow-left {
    left: 5px; /* Page edge */
}

.carousel-arrow-left::before {
    content: '◄';
}

.carousel-arrow-right {
    right: 15px; /* Page edge */
}

.carousel-arrow-right::before {
    content: '►';
}

.carousel-arrow:hover {
    background: #6bc146;
    transform: scale(1.05);
}

#slide1:checked ~ .carousel-container .carousel { transform: translateX(0); }
#slide2:checked ~ .carousel-container .carousel { transform: translateX(-14.286%); }
#slide3:checked ~ .carousel-container .carousel { transform: translateX(-28.571%); }
#slide4:checked ~ .carousel-container .carousel { transform: translateX(-42.857%); }
#slide5:checked ~ .carousel-container .carousel { transform: translateX(-57.143%); }
#slide6:checked ~ .carousel-container .carousel { transform: translateX(-71.429%); }
#slide7:checked ~ .carousel-container .carousel { transform: translateX(-85.714%); }

.carousel-dots {
    position: absolute;
    bottom: -5px; /* Pin to bottom of container */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    z-index: 500;
    padding-bottom: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #a359a0;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 500;
}

.dot:hover {
    background: #7ed957;
}

#slide1:checked ~ .carousel-container .carousel-dots .dot[for="slide1"],
#slide2:checked ~ .carousel-container .carousel-dots .dot[for="slide2"],
#slide3:checked ~ .carousel-container .carousel-dots .dot[for="slide3"],
#slide4:checked ~ .carousel-container .carousel-dots .dot[for="slide4"],
#slide5:checked ~ .carousel-container .carousel-dots .dot[for="slide5"],
#slide6:checked ~ .carousel-container .carousel-dots .dot[for="slide6"],
#slide7:checked ~ .carousel-container .carousel-dots .dot[for="slide7"] {
    background: #7ed957;
    transform: scale(1.2);
}

@keyframes autoSlide {
    0%, 12.244% { transform: translateX(0); }           /* Slide 1 */
    14.286%, 26.530% { transform: translateX(-14.286%); } /* Slide 2 */
    28.571%, 40.816% { transform: translateX(-28.571%); } /* Slide 3 */
    42.857%, 55.102% { transform: translateX(-42.857%); } /* Slide 4 */
    57.143%, 69.388% { transform: translateX(-57.143%); } /* Slide 5 */
    71.429%, 83.673% { transform: translateX(-71.429%); } /* Slide 6 */
    85.714%, 97.959% { transform: translateX(-85.714%); } /* Slide 7 */
}

#slide1:checked ~ .carousel-container .carousel,
#slide2:checked ~ .carousel-container .carousel,
#slide3:checked ~ .carousel-container .carousel,
#slide4:checked ~ .carousel-container .carousel,
#slide5:checked ~ .carousel-container .carousel,
#slide6:checked ~ .carousel-container .carousel,
#slide7:checked ~ .carousel-container .carousel {
    animation: none;
}

#lineup:hover .carousel {
    animation-play-state: paused;
}

@media (max-width: 600px) {
    .carousel-card {
        padding: 15px;
        height: auto;
        min-height: 0;
        max-height: 90vh;
        margin: 0 auto;
    }

    .carousel-container {
        min-height: 300px; /* Smaller for mobile */
    }
    .card-image {
        max-width: 300px;
        min-width: 200px;
        transform: translate(-50%, -50%);
    }
    .card-image-container {
        max-width: 300px;
        min-width: 200px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .card-title {
        font-size: 1.2em;
        margin: 0 0 4px; /* Reduced from ~8px effective to 4px */
    }
    .card-bio {
        font-size: 0.75em;
    }
    .carousel-dots {
        bottom: 5px; /* Adjust for mobile */
    }

    .carousel-dots .dot.active {
        background: #7ed957;
        transform: scale(1.2);
    }
    .card-link-controls {
        justify-content: center;
        padding: 0;
    }
    .card-link {
        margin-top: 6px; /* Reduced from ~12px effective to 6px */
    }
    #lineup {
        position: relative; /* Anchor for absolute positioning */
    }
    .carousel-arrows {
        position: absolute;
        top: 44px; /* Approximate center of #lineup h2 (2.3em ≈ 36.8px, plus padding) */
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 201;
        pointer-events: none;
        transform: translateY(-50%); /* Center vertically with h2 */
    }
    .carousel-arrow {
        position: fixed; /* Pin to screen edges */
        pointer-events: auto;
        background: #7ed957;
        color: #333;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        padding: 8px 12px; /* Slightly smaller for mobile */
        font-size: 1.2em; /* Smaller but visible */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .carousel-arrow-left {
        left: 5px; /* Match desktop screen edge */
    }
    .carousel-arrow-right {
        right: 15px; /* Match desktop screen edge */
    }
}

.card-link-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    position: relative;
    width: 100%;
}

#eventday .parkmap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    max-width: 40vw; /* Ensures it fits within the section */
    overflow: auto; /* Prevents overflow if image is too large */
    position: relative; /* Allows absolute positioning of the button */
    transition: transform 0.3s ease; /* Smooth scaling transition */
}

#eventday .parkmap img.map {
    max-width: 100%; /* Responsive width */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any inline spacing issues */
    border-radius: 10px; /* Matches other section styles */
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2); /* Adds shadow for consistency */
}

#eventday .parkmap.enlarged {
    transform: scale(1); /* Scales the entire parkmap container */
    max-width: 75vw; /* Allows larger size when enlarged */
    z-index: 10; /* Ensures it appears above other content */
}

#faq {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2);
    position: relative;
    border: 3px solid #7ed957;
    color: #333;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    max-width: 85vw;
}

@media (max-width: 600px) {
    #faq {
        max-width: 92vw;
    }
}

.faq-container {
    max-width: 800px;
    margin: 20px auto;
}

#faq h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3em;
    color: #a359a0;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5; /* Higher than .background-images (z-index: 1) */
    position: relative; /* Establish stacking context */
}

.faq-question {
    background-color: #a359a0;
    color: white;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #8b4789;
}

.faq-question::before {
    content: '♪';
    margin-right: 10px;
    font-size: 1em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-question.active::before {
    transform: scale(1.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(241, 242, 109, 0.8);
    padding: 0 15px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    font-family: 'Poppins', sans-serif;
    z-index: 6; /* Ensure FAQ answers are above background-images (z-index: 1) */
}

.faq-answer.active {
    max-height: 500px;
    padding: 15px;
}

.faq-answer p {
    margin: 10px 0;
    line-height: 1.3;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.90); /* Matches section backgrounds */
    padding: 15px;
    padding-top: 10px;
    font-size: 0.95em;
    border-radius: 10px; /* Consistent rounded corners */
    border: 3px solid #7ed957; /* Green border from main sections */
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2); /* Matches section shadows */
    width: 90%;
    max-width: 595px;
    position: relative;
    font-family: 'Poppins', sans-serif; /* Main site font */
    color: #333; /* Text color */
    animation: popOut 0.3s ease-in-out; /* Retain pop-out animation */
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

input[type="text"],
input[type="email"] {
    width: 100%; /* Ensure inputs fit within modal padding */
    box-sizing: border-box; /* Include padding/border in width */
}

.booklink {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.booklink img {
    padding: 5px;
    border-radius: 10px; /* Consistent rounded corners */
    border: 3px solid #7ed957; /* Green border from main sections */
    box-shadow: 0 4px 15px rgba(163, 89, 160, 0.2); /* Matches section shadows */
    padding-bottom: 5px;
}

.booklink img:hover {
    width: 102%;
    border: 3px solid #a359a0; /* Green border from main sections */
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-align: center;
}

.icon-ticket, .icon-email {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 5px; /* Reduced from 10px to tighten gap */
    vertical-align: middle; /* Align with text midline */
}

.icon-ticket img, .icon-email img {
    width: 16px;
    height: 16px;
    vertical-align: middle; /* Align image with text midline */
    margin: 0;
    padding: 0;
}

.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif; /* Matches section headings */
    font-size: 2em; /* Slightly smaller than main h2 for modal */
    color: #a359a0; /* Purple color */
    text-align: center;
    margin: 5px 0;
    margin-bottom: 3px;
    animation: pulse 2s ease-in-out infinite; /* Matches heading animation */
}

.modal-content p {
    margin: 5px;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    margin: 5px;
    padding: 10px; /* Increased padding for larger clickable area */
    background: none;
    border: none;
    line-height: 1;
    z-index: 1001; /* Ensure above modal content */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500; /* Bolder for emphasis */
    color: #a359a0; /* Purple for consistency */
}

input[type="text"],
input[type="email"] {
    padding: 10px;
    border: 2px solid #a359a0; /* Purple border */
    border-radius: 5px; /* Rounded corners */
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: rgba(241, 242, 109, 0.2); /* Light yellow background */
    color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #7ed957; /* Green border on focus */
    background-color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #333;
}

input[type="radio"] {
    margin-right: 10px;
    accent-color: #a359a0; /* Purple radio button */
}

.btn-submit {
    padding: 5px;
    border: 2px solid #a359a0; /* Purple border */
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    background-color: rgba(107, 193, 70, 0.8); /* Darker green on hover */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: #6bc146; /* Darker green on hover */
    transform: scale(1.05); /* Matches button hover effect */
}

#formMessage {
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    text-align: center;
}

#formMessage.error {
    color: #dc3545; /* Red for error */
}

#formMessage.success {
    color: #7ed957; /* Green for success */
}

@media (max-width: 600px) {
    .modal-content {
        width: 85%;
        max-width: 400px; /* Slightly smaller max-width for mobile */
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 12px;
        padding-top: 8px;
    }
    .modal-content h2 {
        font-size: 1.5em;
    }
    .modal-content p {
        font-size: 0.8em;
        padding: 2px;
        margin: 5px 2px;
    }
}

@keyframes popOut {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-open-form {
    z-index: 6;
    flex-shrink: 0;
    margin-right: 10px; /* Restore spacing after hamburger */
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em; /* Smaller font size */
    padding: 7px;
    margin-left: 20px; /* Padding after hamburger */
}

.btn-open-form:hover {
    background-color: #a00aab;
}

.btn-submit.processing {
    background-color: #a359a0;
    animation: pulseProcessing 1.5s ease-in-out infinite;
}

@keyframes pulseProcessing {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    border-top: 3px solid #7ed957;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.cookie-content a {
    color: #a359a0;
    text-decoration: none;
}

.cookie-content a:hover {
    color: #7ed957;
    text-decoration: underline;
}

.cookie-content .btn {
    background-color: #7ed957;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
}

.cookie-content .btn:hover {
    background-color: #6bc146;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .cookie-content p {
        font-size: 0.8em;
        text-align: center;
    }
    .cookie-content .btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

#privacy {
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.privacy-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 6px 20px rgba(163, 89, 160, 0.25);
    border: 3px solid #7ed957;
    max-width: 900px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

#privacy h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8em;
    color: #a359a0;
    text-align: center;
    margin: 0 0 15px;
    animation: pulse 2s ease-in-out infinite;
}

#privacy .last-updated {
    font-size: 0.85em;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #a359a0;
    margin: 15px 0 10px;
    border-bottom: 1px solid #7ed957;
    padding-bottom: 5px;
}

.privacy-section p {
    font-size: 1em;
    line-height: 1.8;
    margin: 10px 0;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.privacy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '🎵';
    position: absolute;
    left: 0;
    color: #a359a0;
    font-size: 1.1em;
}

.privacy-section a {
    color: #a359a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #7ed957;
    text-decoration: underline;
}

#privacy .btn {
    display: block;
    max-width: 200px;
    margin: 30px auto 0;
    text-align: center;
    background-color: #7ed957;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#privacy .btn:hover {
    background-color: #6bc146;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .privacy-container {
        max-width: 92vw;
        padding: 20px;
        margin: 10px auto;
    }
    #privacy h2 {
        font-size: 2.2em;
    }
    .privacy-section h3 {
        font-size: 1.2em;
    }
    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.9em;
    }
    #privacy .last-updated {
        font-size: 0.8em;
    }
    #privacy .btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

#sponsorinfo .img {
    width: 120px; /* Default size */
    max-width: 130px; /* Upper limit */
    min-width: 95px; /* Lower limit */
    height: auto; /* Maintain aspect ratio */
    object-fit: scale-down;
    display: block; /* Prevent inline spacing */
    padding: 2px; /* Optional: Add padding to make background visible */
}

#sponsorinfo .img1 {
    width: 100px; /* Default size */
    max-width: 110px; /* Upper limit */
    min-width: 90px; /* Lower limit */
    height: auto; /* Maintain aspect ratio */
    object-fit: scale-down;
    display: block; /* Prevent inline spacing */
    padding: 2px; /* Optional: Add padding to make background visible */
}

#sponsorinfo .img2 {
    width: 130px; /* Default size */
    max-width: 140px; /* Upper limit */
    min-width: 125px; /* Lower limit */
    height: auto; /* Maintain aspect ratio */
    object-fit: scale-down;
    display: block; /* Prevent inline spacing */
    padding: 2px; /* Optional: Add padding to make background visible */
}

#attribute {
    font-size: 5px;
}

.top-menu .banner-container {
    --zigzag-size: 4px; /* Controls the size of the jagged effect */
    clip-path: polygon(
        0 var(--zigzag-size),
        calc(0% + var(--zigzag-size)) 0,
        calc(10% - var(--zigzag-size)) var(--zigzag-size),
        calc(10% + var(--zigzag-size)) 0,
        calc(20% - var(--zigzag-size)) var(--zigzag-size),
        calc(20% + var(--zigzag-size)) 0,
        calc(30% - var(--zigzag-size)) var(--zigzag-size),
        calc(30% + var(--zigzag-size)) 0,
        calc(40% - var(--zigzag-size)) var(--zigzag-size),
        calc(40% + var(--zigzag-size)) 0,
        calc(50% - var(--zigzag-size)) var(--zigzag-size),
        calc(50% + var(--zigzag-size)) 0,
        calc(60% - var(--zigzag-size)) var(--zigzag-size),
        calc(60% + var(--zigzag-size)) 0,
        calc(70% - var(--zigzag-size)) var(--zigzag-size),
        calc(70% + var(--zigzag-size)) 0,
        calc(80% - var(--zigzag-size)) var(--zigzag-size),
        calc(80% + var(--zigzag-size)) 0,
        calc(90% - var(--zigzag-size)) var(--zigzag-size),
        calc(90% + var(--zigzag-size)) 0,
        calc(100% - var(--zigzag-size)) var(--zigzag-size),
        100% var(--zigzag-size),
        calc(100% - var(--zigzag-size)) calc(0% + var(--zigzag-size)),
        100% calc(50% - var(--zigzag-size)),
        calc(100% - var(--zigzag-size)) calc(50% + var(--zigzag-size)),
        100% calc(100% - var(--zigzag-size)),
        calc(100% - var(--zigzag-size)) 100%,
        calc(90% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(90% - var(--zigzag-size)) 100%,
        calc(80% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(80% - var(--zigzag-size)) 100%,
        calc(70% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(70% - var(--zigzag-size)) 100%,
        calc(60% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(60% - var(--zigzag-size)) 100%,
        calc(50% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(50% - var(--zigzag-size)) 100%,
        calc(40% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(40% - var(--zigzag-size)) 100%,
        calc(30% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(30% - var(--zigzag-size)) 100%,
        calc(20% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(20% - var(--zigzag-size)) 100%,
        calc(10% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        calc(10% - var(--zigzag-size)) 100%,
        calc(0% + var(--zigzag-size)) calc(100% - var(--zigzag-size)),
        0 calc(100% - var(--zigzag-size))
    );
    padding: 8px 12px;
    border: 1px solid #ccc; /* Optional: adds a subtle border */
    flex: 0 1 auto;
    width: calc(100% - 170px); /* Space for hamburger (30px), button (150px), margins (50px) */
    overflow: hidden;
    margin-right: 5px; /* Margin from right edge */
    height: 20px; /* Taller for readability */
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
}

.banner-text {
    display: inline-flex;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: #000000;
    font-weight: 500;
    animation: slide 25s linear infinite;
    will-change: transform;
}

.banner-text span {
    display: inline-block;
    margin-right: 15%; /* Tightened gap */
}

.banner-text span:last-child {
    margin-right: 0; /* Ensure no trailing gap */
}

@keyframes slide {
    0% { transform: translateX(75%); } /* Start with text shifted right for wider screens */
    100% { transform: translateX(-120%); } /* Overshoot to prevent clipping */
}

@media (max-width: 800px) {
    .banner-text {
        animation: slide-narrow 28s linear infinite; /* Faster for narrow screens */
    }

    @keyframes slide-narrow {
        0% { transform: translateX(25%); } /* Start closer to visible area */
        100% { transform: translateX(-120%); } /* Same endpoint to prevent clipping */
    }
}

.site-footer {
    background-color: #7ed957;
    width: 100%;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 5;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.footer-content > a, .footer-content > p {
    display: inline-block;
    margin: 0 5px;
    font-size: 0.9em;
}

.footer-content > a {
    color: #fff;
    text-decoration: none;
}

.footer-content > a:hover {
    color: #333;
    text-decoration: underline;
}

.footer-content > p:nth-child(2) { /* Targets the pipe separator */
    margin: 0 10px;
}

.footer-content > p:last-child { /* Targets the copyright */
    margin-top: 5px;
    font-size: 0.8em;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 8px 0;
    }
    .footer-content > a, .footer-content > p {
        font-size: 0.8em;
    }
    .footer-content > p:last-child {
        font-size: 0.7em;
    }
}.site-footer {
    background-color: #7ed957;
    width: 100%;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 5;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between links and pipe */
}

.footer-links a, .footer-links p {
    display: inline-block;
    margin: 0;
    font-size: 0.9em;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

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

.footer-content > p { /* Targets the copyright */
    margin-top: 5px;
    font-size: 0.8em;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 8px 0;
    }
    .footer-links a, .footer-links p {
        font-size: 0.8em;
    }
    .footer-content > p {
        font-size: 0.7em;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0, 0, 0, 0); 
    white-space: nowrap; 
    border: 0;
}

