@import url('https://fonts.googleapis.com/css2?family=Monomaniac+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: #fafafa;
    overflow-x: hidden;
    }
    




    .slike {
width: 23%;






    }
   
    header {
    width: 100%;
    background-color: rgba(245, 102, 195, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        padding: 0.5rem 1rem; 
        margin: auto;
        height: 80px;
    }
    .headerimg {
        height: 80px; 
        width: auto;
        object-fit: contain;
        margin-top:2px; 
    
       margin-left: -150px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        height: 100px;
    }
    nav a {
    text-decoration: none;
    color: #fafafa;
    margin-left: 1rem;
    font-size: 0.9rem;
    position: relative;
 
    }
    nav a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #f700c2;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
    }
    nav a:hover::after {
    width: 100%;
    }
    
   
    .pocetna-section {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        
        }
        .pocetna-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 0;
        }
        .pocetna-sadrzaj {
        z-index: 1;
        padding: 2rem;
        max-width: 800px;
        }
        .pocetna-sadrzaj h1 {
        font-size: 5rem;
        margin-bottom: 1rem;
        color: #f700c2;
        text-transform: uppercase;
        letter-spacing: 3px;
    
    
        font-family: "Monomaniac One", serif;
        font-weight: 400;
        font-style: normal;
        }
        .poctena-naslov {
        font-size: 1.2rem;
      padding-bottom: 20px;
        color: #fff;

        }
    .countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
   padding-top: 20px;
    }
    .countdown-box {
    background-color: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 5px;
    width: 70px;
    }
    .countdown-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #f700c2;
    }
    .countdown-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    }
    .button {
    margin-top: 1rem;
    }
    .button a {
    text-decoration: none;
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 4px;
    color: #fff;
    background-color: #f700c2;
    text-transform: uppercase;
    transition: background 0.3s;
    }
    .button a:hover {
    background-color: #ff34d7;
    }
    
    main {
    margin-top: 100vh; 
    }
    

    .raspored-section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    }
    .raspored-section h2 {
    font-size: 2rem;
    color: #f700c2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    }
    .koncert-info {
    margin-bottom: 2rem;
    line-height: 1.5;
    }
    .raspored-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    }
    .raspored-kutija {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    }
    .raspored-kutija h3 {
    margin-bottom: 0.5rem;
    color: #f700c2;
    font-size: 1.3rem;
    }
    .raspored-kutija p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    }
    
   
    .izvodaci-section {
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    }
    .izvodaci-section h2 {
    font-size: 2rem;
    color: #f700c2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    }
    .izvodaci-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    }
    .izvodaci-kartica {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    }
    .izvodaci-kartica h4 {
    color: #f700c2;
    margin-bottom: 0.5rem;
    }
    .izvodaci-kartica span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    }
    

    .ulaznice-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    }
    .ulaznice-section h2 {
    font-size: 2rem;
    color: #f700c2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    }
    .ulaznice-section p {
    margin-bottom: 1rem;
    line-height: 1.5;
    }
    .ulaznica {
    display: inline-block;
    margin-top: 1rem;
    background: #f700c2;
    color: #fff;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s;
    }
    .ulaznica:hover {
    background: #ff34d7;
    }
    
    .faq-section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    }
    .faq-section h2 {
    font-size: 2rem;
    color: #f700c2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    }
    .faq-sadrzaj {
    background: rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    }
    .faq-sadrzaj h4 {
    color: #f700c2;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    }
    .faq-sadrzaj p {
    font-size: 0.95rem;
    line-height: 1.4;
    }
    
    footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #000;
    color: #aaa;
    }
    footer a {
    color: #f700c2;
    text-decoration: none;
    }
    
   
  
    .hero video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: -1;
                filter: blur(51);
            }
 
#raspored-slike {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.raspored-slike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin-top: 30px;
}

.raspored-slike-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    
}

.raspored-slike-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.raspored-slike-card h4 {
    margin-top: 10px;
}


.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('hero-bg.jpg') no-repeat center center/cover;
  

}
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('hero-bg.jpg') no-repeat center center/cover;
 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}


.hero-content {
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}


#raspored-slike {
    padding: 50px 0;
    background-color: #000; 
    text-align: center;
}

.raspored-slike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.raspored-slike-card {
    background-color:#181616;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.raspored-slike-card p {
    font-size: 5rem;
    color: #f700c2;
}

.raspored-slike-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.raspored-slike-card h4 {
    margin-top: 10px;
}
  @media (max-width: 768px) {
    .countdown {
    flex-direction: row;
    gap: 0.5rem;
    }
    .schedule-wrapper {
    flex-direction: column;
    }

    .raspored-slike-card{
        display: none;
    }
    }


