:root {
    --light-purple: #9F7FFF;
    --red: #FF1100;
    --green: #00F020;
    --yellow: #EBE200;
    --white: #FEFEFE;
    --blue: #0808C1;
    --aqua-green: #05EDA0;
    --purple: #7E0996;
    --black: #000000;
    --light-blue: #5015FC;
    --light-aqua-green: #00DFEA;
    --dark-blue: #12045B;
    --pink: #F80385;
}

.red {
    color: var(--red);
}

.black {
    color: var(--black);
}

.c-light-blue {
    color: var(--light-blue);
}

.c-purple {
    color: var(--purple);
}

.c-light-aqua-green {
    color: var(--light-aqua-green);
}

body {
    font-family: 'Poppins', sans-serif;
}

.form-section {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #fafafa;
    margin-bottom: 25px;
    font-size: 0.93rem;
}

.vocalist-bg {
    background-color: #B8F3FC !important;
}

.band-bg {
    background-color: #EDD3F2 !important;
}

.video-upload-bg {
    background-color: #A2F2D7 !important;
}

.form-section ol,
.form-section li {
    font-size: 0.85rem;
    line-height: 1.4;
}

label {
    font-weight: 600;
    color: var(--black);
}

.note {
    font-size: 0.9rem;
    color: #6c757d;
}

.submit-btn {
    display: block;
    margin: 0 auto;
    background-color: var(--light-purple);
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    width: 100%;
}

.form-section h5 {
    color: var(--purple);
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-primary:disabled {
    background-color: var(--black);
    border: none;
    cursor: not-allowed;
}

.btn-pay {
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background-color: var(--yellow);
    color: var(--red);
}

.blinking-text {
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

.form-control.is-invalid,
.form-control.is-invalid:focus {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.is-valid,
.form-control.is-valid:focus {
    border-color: #198754 !important;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25) !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: var(--red) !important;
}


/* Home Page */

.bg-cover {
    background-image: url('images/BangOn_Music_Festival_Home_Page_Banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.middle-section {
    text-align: center;
    z-index: 2;
}

.middle-image {
    width: 500px;
    margin-bottom: 1.5rem;
}

.right-images {
    position: absolute;
    right: 2rem;
    top: 20%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.right-images img {
    width: 300px;
    margin-bottom: 1.5rem;
}

.btn-register-now {
    background-color: #00F020;
    color: #000000;
    border: none;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: .5rem 1rem;
}

.btn-rules {
    background-color: #F80385;
    color: #000;
    border: none;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: .5rem 1rem;
}

.early-bird-section {
    background-color: var(--blue);
    padding: 40px 20px 0 20px;
}

.registration-deadline {
    background-color: var(--red);
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 15px;
}

.early-bird-section h2 {
    color: var(--yellow);
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-item h4 {
    color: var(--white);
    font-weight: 600;
}

.pricing-item strong {
    font-size: 2rem;
    font-weight: 800;
}

/* Entry Fee Card */
.entry-fee-card {
    background-color: var(--aqua-green);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(5, 237, 160, 0.4);
}

.btn-register {
    background-color: var(--red);
    color: var(--white);
    font-weight: 700;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: var(--yellow);
    color: var(--black);
    transform: scale(1.05);
}

.who-section {
    background-color: var(--blue);
    text-align: center;
    padding: 3rem 1rem;
}

.who-section h2 {
    color: var(--green);
    font-weight: 800;
}

.who-section h5 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
}

.performer-type {
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.performer-type img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.performer-type p {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.performer-text {
    color: var(--red) !important;
    text-transform: uppercase;
    font-weight: 600 !important;
}

.agency-text {
    font-weight: 500;
    color: var(--white);
}

footer {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem 0;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 0.5rem;
}

.footer-contact h5 {
    color: var(--light-aqua-green);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-contact p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    color: var(--white);
}

.social-icons a {
    color: var(--aqua-green);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icons a img {
    width: 80%;
}

.social-icons a:hover {
    color: var(--yellow);
    transform: scale(1.2);
}

.thank-you-section {
    background-color: var(--dark-blue);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thank-you-section h1 {
    color: var(--green);
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.thank-you-section h2 {
    color: var(--pink);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.section-title {
    color: var(--purple);
    margin-top: 1rem;
    font-weight: 600;
}

ul {
    list-style-type: disc;
    margin-left: 3.5rem;
}

.highlight {
    color: #00ffea;
    font-weight: 600;
}



/* Full-width scrolling area */
.scrolling-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* optional for contrast */
    white-space: nowrap;
}

/* The animated text */
.scrolling-text {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    padding-left: 100%;
    /* starts off-screen on the right */
    font-size: 1.25rem;
}

/* Smooth scrolling animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.scrolling-text:hover {
    animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .overlay-content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
    }

    .middle-image {
        width: 90%;
    }

    .right-images {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }

    .right-images img {
        width: 100px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }

    .pricing {
        flex-direction: column;
        gap: 10px;
    }

    .divider {
        display: none;
    }

    .entry-fee-card {
        margin-top: 2rem;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-contact {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}