@import url('https://fonts.googleapis.com/css2?family=Long+Cang&family=Ma+Shan+Zheng&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background: rgb(167, 44, 44);
    background: linear-gradient(135deg, rgba(167, 44, 44, 1) 0%, rgba(91, 12, 77, 1) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

header h1 {
    margin: 0;
    font-family: "Ma Shan Zheng", serif;
}

a {
    text-decoration: none;
    color: inherit;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 21, 146, 0.3);
}

.banner-content h1 {
    font-family: "Ma Shan Zheng", serif;
    user-select: none;
    transition: color 0.2s ease-in;
    background-image: url(izvodaci/scribble2.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    text-shadow: 10px 10px 10px #e63815;
    animation: float 3s ease-in-out infinite;
    font-size: 10rem;
}

.header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.festival-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

.festival-logo i {
    color: #E61592;
    margin-right: 10px;
    font-size: 28px;
}

.title-icon {
    height: 1em;
    width: auto;
    vertical-align: middle;
    margin-right: 20px;
    filter: drop-shadow(0 0 15px rgba(230, 21, 146, 0.5));
    animation: float 3s ease-in-out infinite;
}

.main-nav {
    display: flex;
    gap: 15px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}
.header-logo {
    height: 3em;     
    width: auto;           
    vertical-align: middle; 
    margin-right: 10px; 
    filter: drop-shadow(0 0 5px rgba(230, 21, 146, 0.5));
}


.festival-logo h1 {
    display: flex;
    align-items: center;
    font-size: 32px; 
}




.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 10px 15px; 
    position: relative;
    transition: color 0.3s ease;
    font-size: 18px; 
}


.ticket-button {
    padding: 10px 25px; 
    border-radius: 20px;
    border: 1px solid #E61592;
    transition: all 0.3s ease;
    font-size: 18px; 
}



.nav-item:hover {
    color: white;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #E61592;
    transition: width 0.3s ease;
}

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


.ticket-button:hover {
    background: #E61592;
    transform: translateY(-2px);
}


.main-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6) blur(2px);
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
}

.festival-title {
    font-size: 72px;
    color: #E61592;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(230, 21, 146, 0.5), 5px 5px 5px rgba(230, 56, 21, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.buy-ticket {
    display: inline-block;
    padding: 15px 40px;
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #E61592;
    border-radius: 30px;
    margin-top: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.buy-ticket:hover {
    background: #E61592;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 21, 146, 0.5);
}

.page-section {
    padding: 80px 0;
    position: relative;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #E61592;
    margin: 15px auto;
    box-shadow: 0 0 10px #E61592;
}

.section-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-festival {
    background: rgba(199, 72, 106, 0.3);
    backdrop-filter: blur(5px);
}

.about-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(230, 21, 146, 0.3);
}


.artist-showcase {
    background: rgba(230, 21, 146, 0.1);
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 21, 146, 0.3);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(230, 21, 146, 0.3);
    border-color: #E61592;
}

.artist-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.3s ease;
}

.artist-card:hover .artist-image {
    filter: grayscale(0%) brightness(1);
}

.artist-info {
    padding: 15px;
    text-align: center;
}

.artist-name {
    font-size: 20px;
    margin-bottom: 5px;
}


.venue-info {
    background: rgba(0, 0, 0, 0.3);
}

.venue-map {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(230, 21, 146, 0.5);
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: sepia(0.3) hue-rotate(-10deg);
}

.venue-details {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(230, 21, 146, 0.3);
}

.venue-address {
    font-size: 18px;
    margin-top: 20px;
}

.venue-address i {
    color: #E61592;
    margin-right: 10px;
}

.event-schedule {
    background: rgba(230, 21, 146, 0.1);
}

.schedule-day {
    text-align: center;
    margin-bottom: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(230, 21, 146, 0.3);
}

.schedule-stage {
    color: #ffcc00;
    margin: 25px 0 15px;
    font-size: 22px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #E61592;
}

.time-range {
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 8px;
}

.performer-name {
    font-size: 18px;
    margin: 5px 0;
}


.faq-section {
    background: rgba(91, 12, 77, 0.3);
    padding-bottom: 100px;
}

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

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(230, 21, 146, 0.3);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #E61592;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}


@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .festival-title {
        font-size: 20px;
    }

    .buy-ticket {
        font-size: 20px;
        padding: 12px 30px;
    }

    .section-heading {
        font-size: 32px;
    }

    .artist-list {
        grid-template-columns: 1fr;
    }

    .artist-image {
        height: 250px;
    }

    .venue-map {
        height: 250px;
    }

    .faq-question {
        font-size: 16px;
        padding-right: 40px;
    }
}


@media (min-width: 641px) and (max-width: 1024px) {
    .festival-title {
        font-size: 20px;
    }

    .buy-ticket {
        font-size: 24px;
    }

    .section-heading {
        font-size: 36px;
    }

    .artist-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-map {
        height: 300px;
    }
}