/* === style.css === */
body {
    cursor: default;
    font-family: "ApplyingAIFont", sans-serif;
    background-color: #020617; /* Extrem dunkles Navy/Schwarz */
    background-image:
        radial-gradient(at 0% 0%, rgba(103, 41, 176, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(252, 126, 39, 0.05) 0px, transparent 50%);
    color: #f8fafc;
}

body, h1, h2, p {
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
}

:root {
  --gradient-start: #8b5cf6;
  --gradient-end: #f97316;
}

.blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, #020617, #3b0d50, #0d0a1a, #1a0f2f, #4b1e80, #0d0a1a);
  background-size: 600% 600%;
  animation: backgroundShift 25s ease infinite;
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}




.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  animation: morph 12s ease-in-out infinite, rotate 40s linear infinite, move 20s ease-in-out infinite alternate;
  filter: blur(100px);
  opacity: 0.35;
  will-change: transform, border-radius, top, left;
    mix-blend-mode: screen;
}

.blob-1 { top: -10%; left: -10%; --gradient-start: #7c3aed; animation-delay: 0s, 0s, 0s; }
.blob-2 { bottom: -10%; right: -10%; --gradient-start: #ea580c; animation-delay: -5s, -5s, -5s; }

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

@keyframes rotate {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.1); }
}

@keyframes move {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

.hover-image {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 40%;
    height: auto;
}

.hover-image:hover {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 0 30px rgba(252,126,39,0.7), 0 0 50px rgba(103,41,176,0.7);
}


@media only screen and (max-width: 1000px) {
    .hover-image {
        width: 80%;
    }
}

.change_font {
    font-size: 2rem; font-weight: bold; margin-bottom: 1rem;
}

.change_word {
    font-size: 30px;
    color: #5D259E;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* width */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(40, 0, 82, 0.6);
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, rgba(255, 102, 0, 1), rgba(255, 102, 0, 0));
}


.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background: transparent !important;
    overflow: hidden;
    height: auto;
    padding: 120px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(120px);
    animation: pulseGlow 12s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-45%, -55%) scale(1.2); opacity: 0.8; }
}

.mobile-text {
    text-align: center;
    margin-left: -65px;
}

@media only screen and (max-width: 768px) {
    .parallax-section h1 {
        margin-left: 0;
        margin-right: 0px;
    }

    .parallax-section {
        background-attachment: scroll;
    }


    .ml13 {
        font-size: 17px;
        text-align: center;
    }
}

.phone-hidden {
    display: none;
}

@media only screen and (max-width: 772px) {
    .images {
        display: none;
    }
    #phone-visibility {
        display: block; /* oder flex, je nachdem */
    }
}


.parallax-text {
    color: #fff;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

text {
    height: auto;
}

@font-face {
  font-family: "ApplyingAIFont";
  src: url("../assets/fonts/Mooli-Regular.ttf");
}

html{
  overflow-x: hidden;
  max-width: 100%;
}


header {
    background-color: rgba(40, 0, 82, 0.8);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease-in-out 1s;
}
.show-header {
  opacity: 1;
}
header:hover {
  opacity: 1;
}


.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


@media only screen and (min-width: 769px) {
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    max-width: 180px;
}
.hide {
  display: none;
}
.container {
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.nav-links li {
    margin-right: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #FC7E27;
    font-weight: bold;
    transition: color 0.3s, font-size 0.3s, text-decoration 0.3s;
    font-size: 22px;
    margin-right: 12px;
}

.nav-links a:hover {
    color: #fff;
    font-size: 24px;
}


@media only screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 5px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-links a:hover {
        font-size: 18px;
    }

}


.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "ApplyingAIFont";
}

.hero p {
    font-size: 1.2rem;
        margin-bottom: 30px;
}
.cta-button, .cta-button-pricing {
    background: linear-gradient(135deg, #6729B0, #FC7E27);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(252, 126, 39, 0.4);
}

.cta-button:hover, .cta-button-pricing:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(252, 126, 39, 0.7), 0 0 40px rgba(103, 41, 176, 0.7);
}

.video-section {
    padding: 80px 20px;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    justify-content: center;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.iframe-wrapper {
    overflow: hidden;
    border-radius: 16px;
    margin-top: 15px;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    transition: transform 0.3s ease;
}

.iframe-wrapper iframe:hover {
    transform: scale(1.03);
}

.video-text {
    font-weight: bold;
    font-size: 36px;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 8px;
    color: #fff;
}

.video-lead {
    font-weight: bold;
    font-size: 24px;
    color: #FC7E27;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .iframe-wrapper iframe { height: 300px; }
    .video-text { font-size: 30px; }
    .video-lead { font-size: 20px; }
}

@media (max-width: 680px) {
    .iframe-wrapper iframe { height: 220px; }
    .video-text { font-size: 24px; }
    .video-lead { font-size: 18px; }
}



.moving {
  margin-right: 300px;
  width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
}

#animatedImage {
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1);
}

#animatedImage.animate-out {
  opacity: 0;
  transform: scale(0.95);
}

#animatedImage.animate-in {
  opacity: 1;
  transform: scale(1);
}


#animatedImage-phone {
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1);
}

#animatedImage-phone.animate-out {
  opacity: 0;
  transform: scale(0.95);
}

#animatedImage-phone.animate-in {
  opacity: 1;
  transform: scale(1);
}

.hero-text{
  z-index: 5;
}

.about-us{
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;

}

.about-us {
    flex-wrap: wrap;
}

.about-us-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media only screen and (min-width: 1183px) {
    .about-us {
        display: flex;
        align-items: flex-start;
    }

    .about-us-card {
        width: calc(33.333% - 20px);
        margin-bottom: 0;
    }
}


.contact-info {
    float: left;
    margin-right: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.about-us-text{
  max-width: 300px;
  margin-right: 10px;
  margin-left: 10px;

}

.about-us-text p,
.about-us-text h2,
.about-us-text h4,
.about-us-text h5,
.replacement-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.learn-more {
    margin: auto;
    text-align: center;
}

.about-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
}

.about-us-text {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.about-us h2 {
    margin-bottom: 20px;
}

.about-us-card {
    width: 100%;
    max-width: none;
    margin-bottom: 35px;
}

@media only screen and (min-width: 1183px) {
    .about-us {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .contact-info {
        float: left;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .about-us-text {
        max-width: 300px;
        margin-right: 10px;
        margin-left: 10px;
    }
}


.person{
    margin-top: -18px;
}
.job-title{
  font-size: 12px;
    color: #bc6b26;
    margin-top: 10px;
}
.about-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 15px;
    margin-bottom: 30px;
}
.about-us-image{
  width: 100%;
}
.about-us-card {
    border-radius: 15px;
    max-width: 200px;
    max-height: 370px;
    outline-color: #bc6b26;
    outline-style: solid;
    outline-width: thick;
    transition: all .2s ease-in-out;
    overflow: hidden;
}
.about-us-card .replacement-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    transition: all .2s ease-in-out;
    transform: translateY(-100%);
}

.about-us-card:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}

.about-us-text,
.about-us-image {
    transition: all .2s ease-in-out;
}
.about-us-card:hover .about-us-text,
.about-us-card:hover .about-us-image {
    opacity: 1;
    transform: translateY(310px);
}

.about-us-card:hover .replacement-text {
    height: 100%;
    opacity: 1;
    width: 90%;
    margin-left: 4%;
    margin-top: 4%;
    transform: translateY(0);
}

footer {
    background-color: #280052;
    padding: 20px 10px;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.footer-links li {
    display: block;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.4s, font-size 0.4s, text-decoration 0.4s;
    font-size: 16px;
    margin-right: 12px;
}


.footer-links-orange:hover {
    color: #FC7E27;
    font-size: 20px;
}

.footer-links-violet:hover {
    color: #6729B0;
    font-size: 20px;
}

.footer-links-rosa:hover {
    color: #883C92;
    font-size: 20px;
}

.footer-links-hellrot:hover {
    color: #CA6255;
    font-size: 20px;
}

.footer-links-blau:hover {
    color: #1D9BF0;
    font-size: 20px;
}

.footer-links-schwarz:hover {
    color: #000000;
    font-size: 20px;
}

.footer-links-insta:hover {
    color: #9029B9;
    font-size: 20px;
}

.footer-links-rot:hover {
    color: #FF0000;
    font-size: 20px;
}

.footer-links-hellrot:hover {
    color: #D54B3E;
    font-size: 20px;
}

.ml13 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
}

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


@media screen and (max-width: 1265px) {
    .ml13 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        text-align: center;
        font-size: 24.5px;
    }
}


.intro-text {
    color: #fff;
    font-size: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 768px) {
    .footer-links li {
        display: inline;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .footer-links a {
        display: inline;
    }
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}


.color-option.active {
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 1);
}

.pricing-section {
    color: #fff;
}

.pricing-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #FC7E27, 0 0 20px #fff, 0 0 30px #FC7E27;
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 10px #FC7E27, 0 0 20px #fff, 0 0 30px #FC7E27; }
    to { text-shadow: 0 0 20px #FC7E27, 0 0 40px #fff, 0 0 60px #FC7E27; }
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    transition: transform 0.5s, box-shadow 0.5s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 40px #FC7E27, 0 0 60px #fff, 0 0 80px #FC7E27;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #FF6600, #FC7E27, #7030A0, #491D7D);
    z-index: 0;
    opacity: 0.3;
    border-radius: 50%;
}
.pricing-card h3, .pricing-card p, .pricing-card .price, .pricing-card a {
    position: relative;
    z-index: 1;
}

.pricing-card .price {
    font-size: 2rem;
    margin: 1rem 0;
    color: #FC7E27;
    text-shadow: 0 0 10px #FC7E27;
}

.pricing-card a.cta-button {
    background: #FF6600;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.pricing-card a.cta-button:hover {
    background: #491D7D;
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF7E27, #FF4500);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}


.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 0.5rem;
}

.one-time-note {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 0.3rem;
}

.savings {
    color: #0BFF32;
    font-weight: 600;
    margin-top: 0.3rem;
}


.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: bold;
    font-family: "ApplyingAIFont", sans-serif;
}

.faq-answer {
    display: none;
    padding-bottom: 1rem;
    color: #ccc;
    font-family: "ApplyingAIFont", sans-serif;
}

.unbegrenzt {
    font-style: italic;
    font-weight: bold;
}


/* === burger_menu.css === */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #FC7E27;
    transition: transform 0.3s ease-in-out;
    z-index: 101;
}

.dropbtn:hover {
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    right: 0;
    flex-direction: column;
}

.dropdown-content a {
    color: #FC7E27;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #6729B0;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.show {
    display: flex;
}

.change {
    transform: rotate(180deg);
}

/* === notification.css === */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 100%);
    align-items: center;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.notification.show {
    display: block;
}

.close-btn {
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}

/* === preloader.css === */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 144, 0, 1);
    display: flex;
    flex-direction: column; /* Text unter oder über Animation */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-align: center;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.loading-square {
    display: inline-block;
    width: 8vw;        /* relativ zur Breite des Viewports */
    max-width: 30px;   /* maximal 60px auf großen Bildschirmen */
    height: 8vw;       /* proportional Höhe */
    max-height: 30px;
    border: 0.8vw solid #6729B0; /* ebenfalls relativ */
    max-border-width: 4px;       /* Grenze */
    animation: loader 2.5s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2.5s infinite ease-in;
}

/* Animationen bleiben gleich */
@keyframes loader {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(180deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loader-inner {
    0% { height: 0%; }
    25% { height: 0%; }
    50% { height: 100%; }
    75% { height: 100%; }
    100% { height: 0%; }
}

/* Mobile-Optimierung */
@media (max-width: 580px) {
    .loading-square {
        width: 20vw;
        height: 20vw;
        border-width: 2vw;
    }
}


/* === show_payment.css === */
.daypass-bar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    height: 36px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 16px;
    letter-spacing: 0.3px;

    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.daypass-bar.warning {
    background: linear-gradient(135deg, #f39c12, #C46C1D);
}

.daypass-bar.danger {
    background: linear-gradient(135deg, #e74c3c, #A83226);
}

.daypass-bar.expired {
    background: #555555;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.daypass-bar.expired:hover {
    background: #454545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}


.fullpackage-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #020617, #3b0d50, #0d0a1a, #1a0f2f, #4b1e80, #0d0a1a);
    background-size: 300% 300%;
    color: white;
    font-size: 16px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.3px;
    animation: backgroundShift 25s ease infinite;
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.savings-amount {
    font-weight: bold;
}
