
:root {
    --primary: #E81B25;
    --primary-dark: #c4161c;
    --secondary: #6c757d;
    --dark: #0a0a0a;
    --light: #f8f9fa;
    --accent: #ffc107;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #ff5e62 100%);
    --section-border: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/*.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('/images/banner-july.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}*/

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.date-badge {
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(232, 27, 37, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-ticket {
    background: var(--gradient);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 27, 37, 0.4);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #FFFFFF;
}

.btn-ticket:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5e62 0%, var(--primary) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 27, 37, 0.6);
}

.btn-ticket:hover:before {
    left: 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--section-border);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.artist-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.artist-card:hover .artist-img {
    transform: scale(1.05);
}

.artist-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
}

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.artist-genre {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.venue-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 27, 37, 0.2);
}

.venue-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 27, 37, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.venue-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.venue-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.venue-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(232, 27, 37, 0.2);
    border: 2px solid var(--primary);
}

.venue-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(232, 27, 37, 0.3);
}

.gallery-item {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(232, 27, 37, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    margin: 0 0.5rem;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-weight: 500;
}

.navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: var(--primary);
    border-radius: 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
    width: 24px;
    height: 24px;
}

.navbar-collapse {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: none;
        padding: 0;
        margin-top: 0;
    }
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.6rem;
    position: relative;
    padding: 0.4rem 0.8rem !important;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.dropdown-menu {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: white !important;
    padding: 0.4rem 1.2rem !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--primary) !important;
    padding-left: 1.5rem !important;
}

footer {
    background: #0a0a0a;
    padding: 4rem 0 0;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h5 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.6rem;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 27, 37, 0.4);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(232, 27, 37, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    background: var(--gradient);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.btn-close:hover {
    opacity: 1;
    background: var(--primary);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 27, 37, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(232, 27, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 27, 37, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

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

/* CTA Section styles */
.cta-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Splide gallery adjustments */
.splide__slide {
    padding: 0 8px;
}

.splide__slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.splide__slide:hover img {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(232, 27, 37, 0.3);
}

.splide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.splide__arrow {
    background: rgba(10, 10, 10, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.splide__arrow:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.splide__arrow--prev {
    left: -22px;
}

.splide__arrow--next {
    right: -22px;
}

.splide__pagination {
    bottom: -30px;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.3);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .artist-img {
        height: 300px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1.5rem 0.8rem;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .splide__slide img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .date-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }

    .btn-ticket {
        padding: 0.6rem 1.8rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .section-title:after {
        width: 80px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.2rem 0.6rem;
        margin: 0 0.3rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .artist-img {
        height: 250px;
    }

    .splide__slide img {
        height: 280px;
    }

    .splide__arrow {
        width: 40px;
        height: 40px;
    }

    .splide__arrow--prev {
        left: -15px;
    }

    .splide__arrow--next {
        right: -15px;
    }
    .hero-section {
        height: auto;
        min-height: 200px;
        margin-top: 60px;
    }

    #buy-ticket-mobile{

    }
}
.nav-item.dropdown .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}.venue-img-wrapper {
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(232, 27, 37, 0.2);
     cursor: pointer;
     transition: transform 0.4s ease;
 }

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

.venue-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
    display: block;
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Lightbox animation */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.4rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .artist-img {
        height: 200px;
    }

    .splide__slide img {
        height: 220px;
    }
}
