@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    display: block;
    clear: both;
    float: left;
    width: 100%;
    height: 100vh;
    background: #181b1e;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
}

.dnone {
    display: none;
}

.zlatepismo {
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: #b38728;
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #f1c40f 75%, 
        #aa771c 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: none;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

#respomenu {
    display: none;
    clear: both;
    float: left;
    margin: 2% 0 0 10%;
    font-size: 2em;
    color: white;
}

a, a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.zalomeni {
    display: block;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

.menutop {
    display: block;
    clear: both;
    float: left;
    width: 100%;
}

.logo {
    float: left;
    background: url(./img/logo.png) no-repeat center center;
    width: 200px;
    height: 80px;
    background-size: 100% !important;
    margin: 2% 0;
}

.menu {
    float: left;
    width: 70%;
    margin: 3% 0 0 10%;
    padding: 0;
    list-style: none;
    display: block;
}

.menu li {
    float: left;
    margin-right: 3%;
}

.menu li a {
    position: relative;
    display: inline-block;
    font-size: 0.9em;
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(45deg, #D4AF37 0%, #F1C40F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 800;
}

.menu li a::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #D4AF37, #F1C40F, #D4AF37) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu li a:hover, .menu li a.active {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: white;
    color: white;
}

.menu li a:hover::after, .menu li a.active::after {
    opacity: 1;
    transition: all 0.3s ease;
}

.header {
    width: 100%;
    height: 80vh;
    position: relative;
    background-color: #181b1e;
    overflow: hidden;
    margin-bottom: 3%;
}

.small {
    height: 40vh;
}

.slideshow-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 27, 30, 0.5);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 20px;
}

.slide-content span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0 10px;
    color: #b38728;
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #f1c40f 75%, 
        #aa771c 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: none;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

.slide-content p {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 800;
}

h1, h2, h3 {
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #b38728;
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #f1c40f 75%, 
        #aa771c 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: none;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.3rem; }

.content {
    display: block;
    clear: both;
    width: 96%;
    padding: 2%;
    color: white;
    font-weight: 100;
}

footer {
    background-color: #181b1e;
    color: #ffffff;
    padding-top: 0;
}

.zlatalinka {
    max-width: 1100px;
    width: 90%;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #f1c40f 75%, 
        #aa771c 100%
    );
    filter: drop-shadow(0px 0px 5px rgba(212, 175, 55, 0.4));
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F1C40F;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.5;
}

.event-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.event-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.event-text {
    flex: 1;
    text-align: left;
}

.event-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 15px;
}

.event-gallery {
    flex: 1;
    min-width: 0;
}

.main-display {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(191, 149, 63, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#activeMainPhoto {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fcf6ba;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 28px;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-btn:hover { background: #bf953f; color: #fff; }
.prev { left: 0; border-radius: 0 4px 4px 0; }
.next { right: 0; border-radius: 4px 0 0 4px; }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
}

.thumbnails-wrapper {
    margin-top: 15px;
    overflow-x: auto;
}

.thumbnails {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumb.active, .thumb:hover {
    opacity: 1;
    border-color: #fcf6ba;
}

.icons {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 0;
    cursor: pointer;
    background-size: 100% !important;
    z-index: 9;
}

.fb {
    background: url(./img/facebook.png) no-repeat center center;
    right: 100px;
}

.inst {
    background: url(./img/instagram.png) no-repeat center center;
    right: 150px;
}

.social-icons {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-size: 100% !important;
    float: left;
    margin: 5% 2% 0 0;
}

.facb {
    background: url(./img/facebook.png) no-repeat center center;
}

.insta {
    background: url(./img/instagram.png) no-repeat center center;
}






.partners-section {
    width: 100%;
    background: #1c2023;
    padding: 60px 0;
    margin: 80px 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    width: 100%;
    overflow: hidden;
    display: block;
}

.marquee-content {
    display: flex;
    gap: 80px;
    width: max-content;
    min-width: 200%;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

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

.partner-logo {
    flex: 0 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: visible;
}

.partner-logo img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    display: block;
}

.partner-logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.partner-logo img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
.partners-title h3 {
    display: block;
    clear: both;
    text-align: center;
    margin: 0 0 5% 0;
}

@media only screen and (max-width: 940px) {
    .logo {
        display: block;
        clear: both;
        margin: 2% auto;
        float: none;
    }
    .menu {
        float: left;
        width: 100%;
        margin: 1% 0;
    }
    .menu li {
        display: block;
        clear: both;
        float: left;
        width: 100%;
        text-align: center;
    }
    .menu li a {
        display: block;
        clear: both;
        width: 96%;
        padding: 4% 0;
        margin: 2% auto;
    }
    #respomenu {
        display: block;
    }
    .dnone {
        display: none !important;
    }
    .header {
        height: 60vh;
    }
    .slide-content span {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 15px;
    }
    .slide-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    h1 { font-size: 2.5rem; max-width: 96%; padding: 2%;}
    h2 { font-size: 2rem; max-width: 96%; padding: 2%;}
    h3 { font-size: 1.6rem; max-width: 96%; padding: 2%;}
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .event-container { flex-direction: column; }
    .event-text { flex: none; width: 100%; }
    .main-display { height: 350px;}
    .event-gallery {
        max-width: 98%;
    }
    .icons {
        right: 0;
    }
    .fb {
        top: 100px;
    }
    .inst {
        top: 150px;
    }
    
    .partner-logo {
        height: 60px;
        padding: 0 15px;
    }
    .marquee-content {
        gap: 40px;
    }
}