
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
        
    }
    
    h1 a {
    text-decoration: none;
    color: inherit;
}

h1 {
    cursor: pointer;
}

    body {
        background: #0f172a;
        color: white;
        overflow-x: hidden;
    }

    header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.container {
    max-width: min(1400px, 90%);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/*mobile responsive header*/
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    /* H1 ostaje levo */
    header h1 {
        font-size: 1.5rem;
    }

    /* desna strana grupisana */
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }
}

    header h1 {
        color: #38bdf8;
    }

    nav a {
        margin-left: 20px;
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

    nav a:hover {
        color: #38bdf8;
    }

    .hero {
        min-height: 90vh;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .hero h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 500px;
        opacity: 0.7;
    }

    .btn {
        margin-top: 20px;
        padding: 12px 25px;
        border: none;
        background: #38bdf8;
        color: black;
        font-weight: bold;
        cursor: pointer;
        border-radius: 8px;
        position: relative;
    z-index: 10;
    }

    .hero h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
}
.hero h2 {
    line-height: 1.2;
    padding: 0 10px;
}
   
/* VIDEO 

.hero-video-wrapper {
    margin-top: 35px;
    width: 80%;
    max-width: 900px;
    position: relative;
    z-index: 5;
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        width: 95%;
        margin-top: 25px;
    }

    .hero-video {
        border-radius: 12px;
    }
}
*/
/*Floating logo

.floating-logo {
    position: absolute;
    width: 280px;
    opacity: 0.5;
    filter: blur(0.2px);
    animation: float 6s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.logo1 {
    top: 10%;
    left: 10%;
}

.logo2 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}
    */

   @keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

    .section {
        padding: 80px 20px;
        text-align: center;
    }

    .cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .card {
        background: #1e293b;
        padding: 20px;
        width: 250px;
        border-radius: 12px;
        transition: 0.3s;
    }

    .card:hover {
        transform: translateY(-10px);
    }

    footer {
        padding: 20px;
        text-align: center;
        opacity: 0.5;
    }

/*Language switch*/

header {
    position: relative;
}
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch button {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(56,189,248,0.1);
    border: 1px solid #38bdf8;
    color: #38bdf8;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch button:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Hamburger dugme */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobilni stil */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        color: white;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #1e293b;
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        border-radius: 10px;
    }

    nav a {
        margin: 10px 0;
    }

    nav.active {
        display: flex;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .header-inner {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    h1 {
        font-size: 1.5rem;
    }


    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    h1 {
        font-size: 1.5rem;
    }

    /* desna grupa ostaje desno */
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    /* NAV postaje dropdown */
    #nav-menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #1e293b;
        flex-direction: column;
        width: 180px;
        padding: 15px;
        border-radius: 10px;
        display: none;
        z-index: 1000;
    }

    #nav-menu.active {
        display: flex;
    }
}



/* Osigurava hover i u mobilnom meniju */
nav a {
    color: white;
    transition: 0.3s;
}

nav a {
    color: white;
    transition: 0.3s;
}

/* Desktop hover */
nav a:hover {
    color: #38bdf8;
}

/* Mobile klik */
nav a:active {
    color: #38bdf8;
}

/* Selektovani link */
nav a.active {
    color: #38bdf8;
}


/* HERO VIDEO */

.hero-video-wrapper {
    margin-top: 35px;
    width: min(90%, 900px);
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    border-radius: 18px;
    overflow: hidden;
    background: #10223a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-video-wrapper {
        width: 92%;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
        min-height: auto;
        height: auto;
        padding: 120px 20px 80px;
    }

    .hero-video-wrapper {
        width: 95%;
        margin-top: 25px;
        border-radius: 14px;
    }

    .hero-video {
        object-fit: cover;
    }
}

/* Mali telefoni */
@media (max-width: 480px) {

    .hero h2 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .hero-video-wrapper {
        width: 100%;
        border-radius: 12px;
    }
}

/* Fireworks */
#fireworks {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}
