@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Raleway:wght@300;400;500&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: #111;
    background-color: #f9f9f9;
    letter-spacing: 0.03em;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Artistic Elements */
.artistic-line {
    width: 1px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, #000, transparent);
    position: fixed;
    left: 100px;
    top: 0;
    z-index: -1;
    opacity: 0.1;
}

.artistic-line:nth-child(2) {
    left: auto;
    right: 100px;
}

.circle-decoration {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.diagonal-line {
    position: fixed;
    width: 100vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
    top: 50%;
    left: 0;
    transform-origin: center center;
    z-index: -1;
}

@media (max-width: 687px){
    .diagonal-line{
        width: 150vw;
        top: 35%;
    }
}
.noise-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 100;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

.elegant-title {
    font-size: 5vw;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}

.elegant-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666;
    margin-top: 20px;
}

.stylish-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: relative;
    display: inline-block;
    margin-bottom: 80px;
    font-weight: 400;
}

.stylish-heading::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #000;
    bottom: -15px;
    left: 0;
}

.stylish-heading::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    bottom: -17px;
    left: 35px;
}

.elegant-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
}

@media (max-width: 767px) {
    .social-links {

        flex-direction: column;
    }

}

a {
    color: #666;
}

.caption {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 9999;
    transition: all 0.3s ease;
    /* mix-blend-mode: difference; */
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #111;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}




/* Hamburger meni */
.hamburger {
    display: none;
    /* Skriven na desktopu */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #111;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Aktivno stanje hamburgera */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responzivnost za mobitele */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: block;
        /* Prikazan na mobitelima */
    }

    .nav-links {
        display: none;
        /* Skriveni po defaultu na mobitelima */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9998;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
        /* Prikazan kad je hamburger aktivan */
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #111;
    }

    .nav-links a::after {
        display: none;
        /* Uklanjamo hover efekt na mobitelima */
    }
}











/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/12Magris260724_TriesteLovesJazz.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.06;
    filter: contrast(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 10vw;
    max-width: 800px;
}

.hero-decoration {
    position: absolute;
    width: 30vw;
    height: 30vw;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    right: -15vw;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
}

.scroll-indicator span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #666, transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        height: 60px;
        opacity: 1;
    }

    50% {
        height: 30px;
        opacity: 0.5;
    }

    100% {
        height: 60px;
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 150px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 70vh;
    background-color: #f0f0f0;
    background: url('../images/03Magris260724_TriesteLovesJazz.jpg') center center no-repeat;
    background-size: cover;
}

.about-img-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.about-text {
    padding-right: 50px;
}

.about-text p {
    margin-bottom: 25px;
}

.signature {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-top: 50px;
    font-style: italic;
    opacity: 0.8;
}

/* Music Section */
.music {
    padding: 150px 0;
    background-color: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.music .stylish-heading::after,
.music .stylish-heading::before {
    background-color: #fff;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.album {
    position: relative;
    cursor:pointer;
}



.album-cover {
    width: 100%;
    aspect-ratio: 1;
    /* border-radius: 50%; */
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Osigurava da slika ispuni krug bez deformiranja */
}

.album:hover .album-cover {
    transform: scale(1.03);
}

.album-cover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.album:hover .album-cover::after {
    opacity: 1;
}

.album-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.album-year {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: #999;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 2;
}

.play-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 5px;
}

.album:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Artists Section */
.artists {
    padding: 150px 0;
    position: relative;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}


@media (max-width: 900px) {
    .artist-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 50px;
    }
}


.artist {
    text-align: center;
}

.artist-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Osigurava da slika ispuni krug bez deformiranja */
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.artist-instrument {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
}

/* Performances Section */
.performances {
    padding: 150px 0;
    background-color: #f3f3f3;
    position: relative;
}

.performances-list {
    list-style: none;
}

.performance-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
}

.performance-date {
    position: relative;
}

.performance-day {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1;
}

.performance-month {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.performance-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.performance-details p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.ticket-btn {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background-color: transparent;
}

.ticket-btn:hover {
    background-color: #111;
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-form {
    max-width: 500px;
}

.form-row {
    margin-bottom: 30px;
}

.form-row label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: #666;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #111;
}

.form-row textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #111;
    background-color: #111;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: transparent;
    color: #111;
}

.contact-info {
    padding-left: 50px;
    border-left: 1px solid #eee;
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #666;
}

.contact-info-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 80px 0;
    background-color: #111;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-col h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #999;
    position: relative;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #666;
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #999;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    list-style: none;
    margin-bottom: 20px;
}

.social-links li {
    margin-right: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.social-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

.copy {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #666;
    margin-top: 50px;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .elegant-title {
        font-size: 3.5rem;
    }

    
}

@media (max-width: 900px) {

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        order: -1;
    }

    .about-img-main {
        height: 50vh;
    }

    .contact-info {
        padding-left: 0;
        border-left: none;
        padding-top: 50px;
        border-top: 1px solid #eee;
    }

    .artistic-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .elegant-title {
        font-size: 2.5rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .performance-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }
}

/* Suptilne animacije u japanskom stilu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

/*.about-content,*/
/*.music-grid,*/
/*.artist-grid,*/
/*.performances-list,*/
/*.contact-content {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: opacity 1s ease-out, transform 1s ease-out;*/
/*}*/

.about-content.visible,
.music-grid.visible,
.artist-grid.visible,
.performances-list.visible,
.contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.artistic-line,
.circle-decoration,
.diagonal-line {
    animation: fadeIn 2s ease-out;
}




/* Modal stil */
.bio-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);

    animation: fadeIn 0.5s ease-out;
}

.bio-modal-content {
    background-color: #f9f9f9;
    margin: 10% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    max-height: 70vh;
    /* Ograničavamo maksimalnu visinu modala */
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out;
    overflow-y: auto;
    /* Omogućava vertikalni scrollbar kad je potrebno */
    overflow-x: hidden;
    /* Sprječava horizontalni scrollbar */
}

.bio-close {
    position: sticky;
    /* Ostaje na vrhu prilikom skrolanja */
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    float: right;
    /* Postavlja ga desno */
}

.bio-close:hover {
    color: #111;
}

.bio-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    /* Poravnanje na vrh */
}

.bio-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-text {
    padding: 20px;
}

.bio-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bio-instrument {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Kad je modal otvoren, onemogući skrolanje na body */
body.modal-open {
    overflow: hidden;
    height: 100vh;
    /* Osigurava da body ne prelazi visinu ekrana */
}

.bio-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.bio-modal-content::-webkit-scrollbar {
    width: 8px;
}

.bio-modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.bio-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Responzivnost */
@media (max-width: 768px) {
    .bio-modal-content {
        width: 90%;
        padding: 20px;
        max-height: 80vh;
                margin-top: 25%;
    }

    .bio-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bio-photo {
        width: 50%;
        margin: 0 auto;
    }
}

/* Responsivnost */
@media (max-width: 768px) {
    

    .bio-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bio-photo {
        width: 50%;
        margin: 0 auto;
    }
}

/* Audio Player */
.audio-player {
    display: none;
    /* Početno skriven */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    color: white;
    padding: 15px;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.audio-player-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.track-info {
    display: flex;
    align-items: center;
    min-width: 0;
    /* Sprečava prelijevanje */
}


.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    transition: background 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.5);
}

.cover-art {
    width: 50px;
    height: 50px;
    background-color: #333;
    margin-right: 20px;
    background-size: cover;
    flex-shrink: 0;
}

.track-details {
    overflow: hidden;
}

.track-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-album {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.player-control {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.play-pause {
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    display: none;
    /* Početno stanje ovisi o reprodukciji */
}

.pause-icon {
    display: block;
    /* Početno stanje ovisi o reprodukciji */
}

.progress-section {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
    gap: 10px;
}

.time-display {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.progress-container {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.1);
    height: 4px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    /* Dinamički se ažurira */
    background-color: white;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.volume-slider {
    width: 80px;
}

.close-player {
    cursor: pointer;
}


@media(max-width: 687px){
    .close-player {
 
    position: absolute;
    top: 10px;
    right: 25px;
}
}

/* Responzivnost */
@media (max-width: 900px) {
    .audio-player-container {
        padding: 0 20px;
    }

    .player-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .track-info {
        justify-content: center;
        text-align: center;
    }

    .cover-art {
        margin-right: 15px;
    }

    .player-controls {
        justify-content: center;
    }

    .progress-section {
        max-width: none;
        margin: 0;
    }

    .volume-section {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .audio-player {
        padding: 10px;
    }

    .cover-art {
        width: 40px;
        height: 40px;
    }

    .track-title {
        font-size: 0.9rem;
    }

    .track-album {
        font-size: 0.6rem;
    }

    .player-control svg {
        width: 16px;
        height: 16px;
    }

    .play-pause {
        width: 35px;
        height: 35px;
    }

    .volume-slider {
        width: 60px;
    }
}


/* Reviews Section */
.reviews {
    padding: 150px 0;
    position: relative;
    background-color: #fff;
    /* Možeš promijeniti boju pozadine */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.review-item {
    text-align: left;
    position: relative;
}

.review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.review-quote::before {
    content: "“";
    font-size: 2rem;
    color: #999;
    position: absolute;
    left: -10px;
    top: -10px;
}

.review-quote::after {
    content: "”";
    font-size: 2rem;
    color: #999;
    position: relative;
    bottom: -10px;
}

.review-author {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 5px;
}

.review-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
}

/* Responzivnost */
@media (max-width: 768px) {
    .reviews {
        padding: 100px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-quote {
        font-size: 1.1rem;
    }
}

.reviews-grid {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reviews-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 150px 0;
    position: relative;
    background-color: #fff;
    /* Možeš promijeniti boju */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    /* Fiksni omjer za konzistentnost */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.gallery-modal-content {
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    text-align: center;
}

#gallery-full-image {
    max-width: 100%;
    max-height: 80vh;
    /* Ograničava visinu slike unutar ekrana */
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: #ccc;
}

/* Responzivnost */
@media (max-width: 768px) {
    .gallery {
        padding: 100px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-modal-content {
        margin: 10% auto;
        padding: 10px;
    }
}




/* Footer Thanks Section */
.footer-thanks {
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.footer-thanks h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-thanks h3::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #666;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-thanks p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #999;
    margin-bottom: 30px;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}





@media (max-width: 687px) {
  
    .sponsor-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-content: center;
        align-items: center;
        place-items: center;
    }
}


.sponsor-logo {
    width: 90px;
    height: 90px !important;
    opacity: .5;
    border-radius: 50%;
    background-color: white;
    overflow:hidden;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-thanks {
        padding: 30px 0;
    }

    .footer-thanks h3 {
        font-size: 1.2rem;
    }

    .footer-thanks p {
        font-size: 1rem;
    }

 
}


   
}






























