* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'serif';
}

.shine-container {
    position: relative;
    display: inline-block; 
    overflow: hidden;
    vertical-align: middle;
}

.light-swipe {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150px;
    height: 100%;
    background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100% );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 99;
}

.do-shine {
    animation: sweepLight 3.0s ease-in-out;
}

@keyframes sweepLight {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header-main {
    background-color: #000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
}

.header-logo {
    position: relative;
    width: 100px;
}

    .header-logo img {
        width: 50% !important;
        animation: rotateLogo 3s linear infinite;
    }

.logo-circle:hover img {
    animation-play-state: paused;
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-circle {
    position: absolute;
    top: -20px;
    left: 0;
    width: 130px;
    height: 130px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .logo-circle img {
        width: 85%;
        height: auto;
    }

.header-title h1 {
    color: #fff;
    font-size: 27px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 10px;
    font-family: Rye;
}

.gold-text {
    background: linear-gradient( 90deg, #7a5c1c, #e8c245, #fff1a8, #e8c245, #7a5c1c );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hamburger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .hamburger-icon span {
        display: block;
        width: 35px;
        height: 3px;
        background-color: #e8c245;
    }

.red-ticker {
    background: linear-gradient(to right, transparent, red);
    height: 25px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 15%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 15%, black 20%);
}

.ticker-wrapper {
    display: flex;
    width: max-content;
    animation: scrollRightSeamless 10s linear infinite;
}

.ticker-content {
    color: #fff;
    font-size: 10px;
    font-family: "Source Code Pro", monospace;
    white-space: nowrap;
    padding-left: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scrollRightSeamless {
    0% {
        transform: translateX(-33.33%);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-grid {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 10px 5%;
    position: relative;
    overflow: hidden;
}

    .hero-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,1) 80%);
        z-index: 2; 
        pointer-events: none;
    }

    .hero-grid::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url(/img/pocetna.webp);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        z-index: 1;
        filter: brightness(1) contrast(1) saturate(1) sepia(0);
        transform: scale(var(--zoom-scale, 1));
        transition: filter 1.2s ease-in-out, transform 0.2s ease-out;
        will-change: filter, transform;
    }

    .hero-grid.is-gold::after {
        filter: sepia(0.8) saturate(4) brightness(1.2) contrast(1.1);
    }

.hero-body {
    position: relative;
    z-index: 10;
}

.hero-body {
    position: relative;
    z-index: 10;
}

.hero-body {
    margin-top: -100px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero-meta {
    align-self: flex-end;
    text-align: right;
    margin-bottom: 50px;
}

    .hero-meta p {
        font-family: Source Code Pro;
        color: white;
        letter-spacing: 2px;
        font-size: 20px;
        text-transform: uppercase;
        margin-bottom: 5px;
        font-weight: 100;
    }

.white-txt {
    color: #fff;
    font-weight: 400;
}


.yellow-badge {
    font-family: Source Code Pro;
    background: linear-gradient( 90deg, #7a5c1c, #e8c245, #fff1a8, #e8c245, #7a5c1c );
    color: #000;
    padding: 3px 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 19px;
}

.hero-main-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 2.7rem);
    line-height: 1.2;
    text-align: right;
    align-self: flex-end;
    width: 80%;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-family: Roboto;
}

.hero-cta-box {
    align-self: flex-end;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5%;
}

.btn-pill {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 15px 60px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    overflow: hidden;
    background: #000;
    border: 1px solid #fff;
    transition: padding 0.3s ease-in-out;
    z-index: 1;
    opacity: 0.8;
    font-family: Source Code Pro;
    font-weight: 400;
    font-size: 22px;
}

    .btn-pill::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: inherit;
        background: linear-gradient( 90deg, #7a5c1c, #e8c245, #fff1a8, #e8c245, #7a5c1c );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease-in-out;
    }

    .btn-pill:hover {
        border: 1px solid black;
        padding: 15px 100px;
        opacity: 1;
        color: white;
        transition: all ease-in-out 0.5s;
    }

        .btn-pill:hover::before {
            opacity: 1;
        }

.yellow-tiny-text {
    font-family: Source Code Pro;
    font-weight: lighter !important;
    color: #ffe9a4;
    font-size: 11px;
    text-align: center;
    font-family: monospace;
    line-height: 1.8;
    max-width: 75%;
}

.hero-meta, .hero-cta-box {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 5s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section-eternal {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    overflow: visible;
}

.intro-text-mono {
    font-family: 'Source Code Pro';
    font-size: 0.85rem;
    line-height: 1.8;
    color: white;
    letter-spacing: 1px;
    text-transform:uppercase;
}

.contact-panel-container {
    position: relative;
    margin-top: 150px;
}

.person-image-wrapper {
    position: absolute;
    top: -350px; 
    left: 50px;
    z-index: 10;
    width: 700px;
}

.person-img {
    width: 100%;
}

.person-img {
    filter: drop-shadow(35px 8px 8px rgba(0,0,0,0.65));
}

.contact-card-dark {
    padding: 60px 80px 60px 80px;
    border-radius: 5px;
    position: relative;
}

.contact-headline {
    font-family: 'Source Code Pro';
    color: #f1c40f; 
    font-weight: 700;
    letter-spacing: 5px;
    text-align: end;
    margin-left: 200px; 
    font-size:45px;
}

.form-group-eternal {
    margin-bottom: 25px;
}

.eternal-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    padding: 10px 0;
    font-family: 'Source Code Pro';
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

    .eternal-input:focus {
        border-color: #f1c40f;
    }

.eternal-textarea {
    border: 1px solid #444;
    padding: 10px;
    margin-top: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Source Code Pro';
    font-size: 0.9rem;
}

    .contact-info-item i {
        color: #fff;
        font-size: 1.2rem;
    }

.lorem-small {
    font-size: 0.7rem;
    color: #787878;
    line-height: 1.5;
    font-family: 'Source Code Pro';
    padding-right:50px !important;
}

.checkbox-container {
    font-family: 'Source Code Pro';
    font-size:14px;
}

.checkbox-container input {
    accent-color: #ff0000; 
    margin-right: 10px;
}

.btn-posalji {
    background-color: #f1c40f;
    color: #000;
    border: none;
    padding: 10px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Source Code Pro', monospace;
    transition: 0.3s;
    cursor: pointer;
}

    .btn-posalji:hover {
        transform: scale(1.05);
        background-color: #fff;
    }

.container-bg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #121212; 
    background: linear-gradient( 135deg, #080808 25%, #101010 25%, #101010 50%, #080808 50%, #080808 75%, #101010 75%, #101010 );
    background-size: 40px 40px;
    animation: move 4s linear infinite;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.info-terminal-section {
    background-color: #000;
    padding: 250px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.red-warning-strip {
    position: absolute;
    top: 150px;
    left: -10%;
    width: 120%; 
    background-color: #b30000;
    padding: 10px 0;
    transform: rotate(-3deg);
    z-index: 1;
    display: flex;
    overflow: hidden;
}

.strip-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-right 10s linear infinite; 
}

    .strip-content span {
        color: #fff;
        font-family: 'Source Code Pro', monospace;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 4px;
        text-transform: uppercase;
        display: inline-block;
    }

@keyframes scroll-right {
    0% {
        transform: translateX(-50%); 
    }

    100% {
        transform: translateX(0%); 
    }
}

.terminal-text-block {
    position: relative;
    z-index: 2;
    margin: 80px 100px 0 100px;
}

.info-item {
    margin-bottom: 80px;
}

.gold-terminal-title {
    font-family: 'Source Code Pro', monospace;
    color: #f1c40f;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,1);
}

.terminal-p {
    color: #d4d4d4;
    font-family: 'Source Code Pro', monospace;
    line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-left: 3px solid #f1c40f;
    padding-left: 20px;
}

.counter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Roboto;
    padding: 0;
}

.counter-text {
    font-size: 40px; 
    color: white; 
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.counter-wrapper {
    display: flex;
    height: 90px; 
    overflow: hidden;
    margin-right: 12px; 
}

.digit-container {
    width: 1ch;
    height: 90px;
    line-height: 90px;
    position: relative;
    transition: transform 3.2s cubic-bezier(0.1, 0, 0.1, 1);
}

.digit-strip {
    display: flex;
    flex-direction: column;
    color: #f1c40f;
}

    .digit-strip span {
        text-align: center;
    }



@media (max-width: 768px) {

    .header-main {
        background-color: #000;
        height: 10vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        position: relative;
    }

    .header-logo {
        position: relative;
        width: 0;
    }

        .header-logo img {
            width: 70% !important;
            animation: rotateLogo 3s linear infinite;
        }

    .logo-circle {
        top: 2vh;
        left: 0px;
        width: 22vw;
        height: 22vw;
    }

        .logo-circle img {
            width: 90%;
            height: auto;
        }

    .header-title h1 {
        color: #fff;
        font-size: 4vw;
        letter-spacing: 1.5px;
        padding-top: 10px;
        text-align:center;
    }

    .hamburger-icon {
        gap: 5px;
    }

        .hamburger-icon span {
            width: 7vw;
            height: 2px;
            margin-right:10px;
        }

    .red-ticker {
        background: linear-gradient(to right, transparent, red);
        height: 35px;
        display: flex;
        width: 100%;
    }

    .ticker-content {
        font-size: 12px;
    }




        .hero-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 5%, rgba(0,0,0,1) 60%);
        }

        .hero-grid::after {
            background-image: url(/img/pocetna.webp);
            background-size: 100vh;
            background-position: left top;
        }


    .hero-body {
        margin-top: 10vh !important;
        width: 100%;
    }

    .hero-meta {
        margin-bottom: 20px;
    }

        .hero-meta p {
            letter-spacing: 1.5px;
            font-size: 4.5vw;
        }


    .yellow-badge {
        font-size: 4.5vw;
    }

    .hero-main-title {
        font-size: 6vw;
        padding: 0 4vw;
        text-align: start !important;
    }

    .btn-pill {
        padding: 15px 60px;
        border-radius: 50px;
        margin-bottom: 20px;
        margin-top:-2vh;
        margin-bottom:5vh;
        font-size: 4vw;
    }

        .btn-pill:hover {
            padding: 15px 70px;
        }

    .yellow-tiny-text {
        font-size: 2.5vw;
        text-align: justify;
        font-family: monospace;
        line-height: 1.8;
        max-width: 90%;
    }

    /*copied*/

    .hero-grid {
        background-position: center top;
        background-size: cover;
        padding-top: 200px;
    }

    .hero-main-title, .hero-meta, .hero-cta-box {
        align-self: center;
        text-align: center;
        width: 100%;
        margin-right: 0;
    }

    .counter-section {
    margin-top:0px;
    }

.counter-text {
    font-size: 7vw; 
}

.counter-wrapper {
    margin-right: 2vw; 
}



/*Kontakt*/

    .container {
        padding: 0 7vw;
    }

    .contact-section-eternal {
        background-color: #000;
        margin-top: -50px;
        color: #fff;
        overflow: visible;

    }

    .intro-text-mono {
        font-size: 2.5vw;
        text-align:start;
    }

    .contact-panel-container {
        margin-top: 50px;
    }

    .contact-headline {
        font-family: 'Source Code Pro';
        color: #f1c40f;
        font-weight: 700;
        letter-spacing: 5px;
        text-align: center;
        margin-left: 0;
        padding-top:5vh;
        font-size: 7vw;
    }

    .form-group-eternal {
        margin-bottom: 25px;
    }


    .eternal-input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid #444;
        color: #fff;
        padding: 10px 0;
        font-family: 'Source Code Pro';
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

        .eternal-input:focus {
            border-color: #f1c40f;
        }

    .eternal-textarea {
        border: 1px solid #444;
        padding: 10px;
        margin-top: 10px;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 7px;
        font-family: 'Source Code Pro';
        font-size: 4vw;
    }

        .contact-info-item i {
            color: #fff;
            font-size: 4vw;
        }

    .lorem-small {
        font-size: 3vw;
        color: #787878;
        line-height: 1.5;
        font-family: 'Source Code Pro';
        padding: 15px 0;
    }

    .btnPosalji {
        text-align: center !important;
        padding-bottom:5vh;
    }

    .btn-posalji {
        background-color: #f1c40f;
        color: #000;
        border: none;
        padding: 12px 70px;
        border-radius: 25px;
        font-weight: 700;
        font-family: 'Source Code Pro', monospace;
        transition: 0.3s;
        cursor: pointer;
    }

        .btn-posalji:hover {
            transform: scale(1.05);
            background-color: #fff;
        }

    .person-image-wrapper {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        text-align: center;
        margin-bottom: -70px;
    }

    .contact-headline {
        margin-left: 0;
    }

    .contact-card-dark {
        padding: 40px 20px;
    }

    .info-terminal-section {
    padding: 33vh 0 0 0;
    }

    .terminal-text-block {
        margin-left: 0;
        margin-top: -40px;
    }

    .gold-terminal-title {
        font-size: 1.8rem;
    }

    .red-warning-strip {
        top: 30px;
    }

    .strip-content span{
    font-size:3.5vw;
    }


    .terminal-p {
        font-size: 3.4vw;
        margin-right:-50%;
    }

    .containerTerminal {
    width:90vw;
    }

    .gold-terminal-title {
        font-size: 7vw;
    }



}



@media (min-width: 768px) and (max-width: 1024px) {



    .header-main {
        background-color: #000;
        height: 10vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        position: relative;
    }

    .header-logo {
        position: relative;
        width: 0;
    }

        .header-logo img {
            width: 70% !important;
            animation: rotateLogo 3s linear infinite;
        }

    .logo-circle {
        top: 2vh;
        left: 2vw;
        width: 15vw;
        height: 15vw;
    }

        .logo-circle img {
            width: 80%;
            height: auto;
        }

    .header-title h1 {
        color: #fff;
        font-size: 3.5vw;
        letter-spacing: 1.5px;
        padding-top: 10px;
        text-align: center;
    }

    .hamburger-icon {
        gap: 5px;
    }

        .hamburger-icon span {
            width: 3vw;
            height: 2px;
            margin-right: 10px;
        }

    .red-ticker {
        background: linear-gradient(to right, transparent, red);
        height: 35px;
        display: flex;
        width: 100%;
    }

    .ticker-content {
        font-size: 12px;
    }


    .hero-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 5%, rgba(0,0,0,1) 70%);
    }

    .hero-grid::after {
        background-image: url(/img/pocetna.webp);
        background-size: 120vh;
        background-position: left top;
    }

    .hero-body {
        margin-top: 10vh !important;
    }

    .hero-meta p {
        letter-spacing: 1.5px;
        font-size: 3vw;
        text-align:center;
    }


    .yellow-badge {
        font-size: 3vw;
    }

    .hero-main-title {
        width: 100%;
        font-size: 6vw;
        padding: 0 2vw;
        text-align: end !important;
        margin-bottom: 50px;
    }


    .btn-pill {
        padding: 15px 30px;
        margin-bottom: 2vh;
        font-size: 2.5vw;
    }

        .btn-pill:hover {
            padding: 15px 40px;
        }

    .yellow-tiny-text {
        font-size: 1.2vw;
        text-align: justify;
        font-family: monospace;
        line-height: 1.8;
        max-width: 100%;
    }


    /*stop*/



    .container {
        padding: 0 0vw;
    }

    .contact-section-eternal {
        background-color: #000;
        margin-top: -50px;
        color: #fff;
        overflow: visible;
    }

    .intro-text-mono {
        font-size: 2vw;
        text-align: start;
    }

    .contact-panel-container {
        margin-top: 50px;
    }

    .contact-headline {
        font-family: 'Source Code Pro';
        color: #f1c40f;
        font-weight: 700;
        letter-spacing: 5px;
        text-align: center;
        margin-left: 0;
        padding-top: 5vh;
        font-size: 6vw;
    }

    .form-group-eternal {
        margin-bottom: 25px;
    }


    .eternal-input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid #444;
        color: #fff;
        padding: 10px 0;
        font-family: 'Source Code Pro';
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

        .eternal-input:focus {
            border-color: #f1c40f;
        }

    .eternal-textarea {
        border: 1px solid #444;
        padding: 10px;
        margin-top: 10px;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 7px;
        font-family: 'Source Code Pro';
        font-size: 2vw;
    }

        .contact-info-item i {
            color: #fff;
            font-size: 2vw;
        }

    .lorem-small {
        font-size: 2vw;
        color: #787878;
        line-height: 1.5;
        font-family: 'Source Code Pro';
        padding: 15px 0;
    }

    .btnPosalji {
        text-align: center !important;
        padding-bottom: 5vh;
    }

    .btn-posalji {
        background-color: #f1c40f;
        color: #000;
        border: none;
        padding: 12px 70px;
        border-radius: 25px;
        font-weight: 700;
        font-family: 'Source Code Pro', monospace;
        transition: 0.3s;
        cursor: pointer;
    }

        .btn-posalji:hover {
            transform: scale(1.05);
            background-color: #fff;
        }

    .person-image-wrapper {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        text-align: center;
        margin-bottom: -130px;
    }

    .contact-headline {
        margin-left: 0;
    }

    .contact-card-dark {
        padding: 30px 20px;
    }

    .info-terminal-section {
        padding: 23vh 0 0 0;
    }

    .terminal-text-block {
        margin-left: 0;
        margin-top: -40px;
    }

    .gold-terminal-title {
        font-size: 2vw;
    }

    .red-warning-strip {
        top: 30px;
    }

    .strip-content span {
        font-size: 2.3vw;
    }


    .terminal-p {
        font-size: 2vw;
        margin-right: 0%;
    }

    .containerTerminal {
        width: 90vw;
    }

    .gold-terminal-title {
        font-size: 4vw;
    }

}