html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', Verdana, sans-serif;
}

.header {
    background-color: #041c3c;
}

.column {
    width: 1300px;
    margin: 0px auto;
}

.page .column {
    height: 220vh;
}

#logo_social {
    display: flex;
}

#logo-holder {
    flex-grow: 1;
}

#logo-holder img {
    height: 128px;
    width: 192px;
}

#general-holder {
    flex-grow: 1;
}

.generals img {
    display: block;
    height: 24px;
    width: 24px;
    margin: 0 10px 8px 0;
    float: left;
}

.general-list {
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.general-list > li {
    list-style: none;
    margin: 1px;
}

.general-list > li span {
    color: #ec1f24;
    font-size: 13px;
}

#social-holder {
    flex-grow: 1;
    text-align: right;
}

#social-holder a {
    text-decoration: none;
}

#social-holder a img {
    margin: 5px;
    height: 32px;
    width: 32px;
}

.navbar {
    display: flex;
    overflow: hidden;
    font-size: 18px;
}

.navbar a {
    flex-grow: 1;
    text-align: center;
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #ec1f24;
    transition: 300ms;
}

.navbar a:hover {
    background: #041c3c;
    color: #f6f4eb;
}

.dropdown {
    float: left;
    overflow: hidden;
    flex-grow: 1;
    text-align: center;
}

.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: #ec1f24;
    padding: 12px 16px;
    background-color: #041c3c;
    margin: 0;
    letter-spacing: 1px;
}

.dropdown:hover .dropbtn {
    background: #041c3c;
    color: #f6f4eb;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-left: 50px;
    font-size: 16px;
    font-weight: bold;
    background-color: #041c3c;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #ec1f24;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #041c3c;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#pocetna {
    text-align: center;
    color: #fff;
    background: url(img/studioMostnetBg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

#pocetna h1 {
    font-size: 54pt;
    margin-top: 0px;
    padding-top: calc(20vh - 100px);
    text-shadow: 8px 8px 20px #000000;
}

.aktuelno-container {
    display: flex;
    justify-content: center;
    padding-top: 212px;
}

.aktuelno-text {
    background-color: #000000b2;
    border: 3px solid #fff;
    font-size: 22pt;
    padding: 38px;
}

#emisije {
    padding: 4rem 0 3rem
}

#emisije h2 {
    font-size: 48pt;
    font-weight: 600;
    text-align: center;
}

.emisije-all {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 6.5rem;
    padding-top: 40px;
}

.emisije-box {
    position: relative;
}

.emisije-box:hover {
    padding: 10px;
    border: 1px solid var(--text-color);
    transition: 0.4s;
}

.emisije-img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.emisija-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer {
    background-color: #041c3c;
    border-top: 2px solid #c1c1c1;
    font-size: 13px;
}

.footer > .column {
    display: flex;
}

.footer .footer-column {
    flex-grow: 1;
    flex-basis: 0;
    padding-top: 8px;
}

.footer-column_align-left {
    padding-top: 28px;
    text-align: center;
}

.footer-column_align-center {
    margin-top: 70px;
    margin-right: 52px;
    text-align: center;
    font-size: 16px;
    color: #ec1f24;
    text-decoration: none;
}

.footer-column_align-center:hover {
    text-decoration: underline;
}

.footer-column_align-right {
    margin-top: 40px;
    text-align: right;
    font-size: 16px;
}

.footer-left-list {
    display: flex;
    flex-direction: column;
}

.footer-left-list > li {
    list-style: none;
    margin: 8px;
}

.text-in-img span {
    font-size: 14px;
    font-weight: bold;
    color: #ec1f24;
}

.logo-footer > img {
    height: 64px;
    width: 96px;
}

.social-footer {
    margin-top: 6px;
    margin-left: 10px;
}

.social-footer a {
    text-decoration: none;
}

.social-footer img {
    height: 32px;
    width: 32px;
}

.red-link {
    color: #ec1f24;
    text-decoration: none;
}

.red-link:hover {
    text-decoration: underline;
}

/* Burger nav */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 30px;
    background: #ec1f24;
    margin: 5px 0;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.navbar--open {
    display: grid;
    transform: translate(0) !important;
}

.hamburger--open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MEDIA QUERY */

@media screen and (min-width: 320px) and (max-width: 485px) {
    
    .header .column {
        margin: 0;
    }

    .column {
        width: 100%;
    }

    .column > h1 {
        padding-top: 20px;
        text-align: center;
        font-size: 16pt !important;
    }

    #logo-holder img {
        margin-top: 10px;
        height: 32px;
        width: 64px;
    }

    #social-holder {
        margin-top: 6px;
    }

    .general-list {
        margin-left: 24px;
        padding-left: 0;
    }

    .general-list > li span {
        font-size: 8px;
    }

    .generals img {
        height: 16px;
        width: 16px;
    }

    #social-holder a img {
        margin: 2px;
    }

    .navbar {
        position: absolute;
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
    }

    .navbar a {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        font-size: 14px;
    }

    .dropdown .dropbtn {
        font-size: 15px;
        background-color: #fff;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .hamburger {
        display: flow-root;
        text-align: right;
        margin-left: 10px;
    }

    .page .column {
        height: fit-content;
    }
        
    #pocetna {
        text-align: center;
        background: url(img/bg_mobile-poc.jpg);
        background-size: cover;
        background-attachment: fixed;
    }

    #emisije .column {
        height: fit-content;
    }

    #emisije h2 {
        font-size: 20pt;
    }

    .aktuelno-container {
        padding: 200px 6px;
    }

    .aktuelno-text {
        text-align: center;
        font-size: 16px;
        line-height: 122%;
    }

    .footer .column {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer-column_align-left {
        padding-top: 24px;
        text-align: center;
    }

    .footer-left-list {
        padding: 0;
    }

    .footer-left-list > li {
        margin: 0;
    }

    .text-in-img > span {
        font-size: 14px;
    }

    .social-footer {
        text-align: center;
        margin-top: 4px;
        margin-left: 0px;
    }

    .logo-footer > img {
        height: 32px;
        width: 64px;
    }

    .footer-column_align-center {
        margin-top: 34px;
        margin-right: 0;
        text-align: center;
        font-size: 10px;
    }

    .footer-column_align-right {
        margin-top: 20px;
        text-align: center;
        font-size: 18px;
    }
}

@media screen and (min-width: 486px) and (max-width: 767px) {

    .column {
        width: 100%;
    }

    #logo-holder img {
        margin-top: 10px;
        padding-left: 6px;
        height: 64px;
        width: 96px;
    }

    #general-holder {
        flex-grow: 0;
    }

    .general-list {
        margin-left: 10px;
        padding-left: 0;
    }

    .general-list > li span {
        font-size: 12px;
    }

    .generals img {
        height: 16px;
        width: 16px;
    }

    #social-holder a img {
        margin: 2px;
        padding-right: 2px;
    }

    .navbar {
        position: absolute;
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
    }

    .navbar a {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        font-size: 16px;
    }

    .dropdown .dropbtn {
        font-size: 16px;
        background-color: #fff;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .hamburger {
        display: flow-root;
        text-align: right;
        margin-left: 10px;
    }

    .page .column {
        height: fit-content;
    }

    #pocetna h1 {
        padding-top: calc(10vh - 50px);
        text-align: center;
        font-size: 26pt;
    }

    .aktuelno-container {
        padding: 0 12px;
    }

    .aktuelno-text {
        text-align: center;
        font-size: 16px;
        line-height: 122%;
    }

    .footer .column {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer-column_align-left {
        padding-top: 24px;
        text-align: center;
    }

    .footer-left-list {
        padding: 0;
    }

    .footer-left-list > li {
        margin: 0;
    }

    .text-in-img > span {
        font-size: 14px;
    }

    .social-footer {
        text-align: center;
        margin-top: 4px;
        margin-left: 0px;
    }

    .logo-footer > img {
        height: 32px;
        width: 64px;
    }

    .footer-column_align-center {
        margin-top: 34px;
        margin-right: 0;
        text-align: center;
        font-size: 10px;
    }

    .footer-column_align-right {
        margin-top: 20px;
        text-align: center;
        font-size: 20px;
    }

}

@media screen and (min-width: 768px) and (max-width: 991px) and (min-height: 980px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 22px;
    }

    #logo-holder > img {
        height: 64px;
        width: 128px;
    }

    #general-holder {
        flex-grow: 4;
    }

    .general-list {
        margin-left: 100px;
    }

    .page .column {
        height: fit-content;
    }

    #pocetna {
        background: url(img/tabletBg768.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    #pocetna h1 {
        padding-top: calc(10vh - 50px);
        text-align: center;
        font-size: 42pt;
        text-shadow: 8px 8px 20px #000000;
    }

    #emisije .column {
        height: fit-content;
    }

    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding: 220px 12px;
    }

    .aktuelno-text {
        max-width: 1200px;
        text-align: center;
        line-height: 140%;
        font-size: 20px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-column_align-left {
        padding-top: 28px;
        text-align: center;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        margin-right: 52px;
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (min-height: 1156px) {

    #pocetna {
        background: url(img/bg1156x800.jpg);
        background-size: contain;
        background-attachment: fixed;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (min-height: 1236px) {

    #pocetna {
        background: url(img/bg1236x800.jpg);
        background-size: contain;
        background-attachment: fixed;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (min-height: 1356px) {

    #pocetna {
        background: url(img/tabletBg1356x800.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    .aktuelno-container {
        padding: 172px 12px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (min-height: 1792px) {

    #pocetna {
        background: url(img/bg1792x915.jpg);
        background-size: contain;
        background-attachment: fixed;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 28px;
    }

    #social-holder a img {
        height: 42px;
        width: 42px;
    }

    .page .column {
        height: fit-content;
    }

    #pocetna {
        background: url(img/bg1024x768.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    #pocetna h1 {
        padding-top: calc(10vh - 50px);
        text-align: center;
        font-size: 48pt;
        text-shadow: 8px 8px 20px #000000;
    }

    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding: 360px 12px;
    }

    .aktuelno-text {
        padding: 50px 20px 0 20px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-column_align-left {
        padding-top: 28px;
        text-align: center;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        margin-right: 52px;
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }

}

@media screen and (min-width: 992px) and (max-width: 1199px) and (min-height: 768px) {

    #pocetna {
        background: url(img/bg1024x768.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    .aktuelno-container {
        padding: 200px 12px;
    }

    .aktuelno-text {
        font-size: 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) and (min-height: 1342px) {

    #pocetna {
        background: url(img/bg1342x1024.jpg);
        background-size: contain;
        background-attachment: fixed;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1299px) {

    .column {
        width: 100%;
    }

    .column > h1 {
        text-align: center;
        font-size: 32px;
    }

    #logo-holder {
        margin-left: 40px;
    }

    .page .column {
        height: fit-content;
        width: 880px;
    }

    #pocetna h1 {
        font-size: 40pt;
    }

    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding-top: 32px;
    }

    .aktuelno-text {
        padding: 50px 20px 0 20px;
        font-size: 20px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-column_align-left {
        padding-top: 28px;
        text-align: center;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        margin-right: 52px;
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }

}

@media screen and (min-width: 1300px) and (max-width: 1439px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 40px;
    }

    .general-list > li span {
        font-size: 14px;
    }

    .page .column {
        height: fit-content;
        width: 960px;
    }

    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding-top: 148px;
    }

    .aktuelno-text {
        padding: 50px 20px 0 20px;
        font-size: 20px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-column_align-left {
        padding-top: 28px;
        text-align: center;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        margin-right: 52px;
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }

}

@media screen and (min-width: 1440px) and (max-width: 1599px) {


    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding-top: 300px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-column_align-left {
        padding-top: 28px;
        text-align: center;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    
    .footer-column_align-center {
        margin-right: 52px;
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }

}

@media screen and (min-width: 1600px) and (max-width: 1920px) {

    .aktuelno-container {
        display: flex;
        justify-content: center;
        padding-top: 212px;
    }

    .footer .column {
        width: auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: 0;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1920px) and (min-height: 1200px) {

    #pocetna {
        background: url(img/bg1600x1200.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    #emisije .column {
        height: fit-content;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1920px) and (min-height: 2516px) {
   
    .page .column {
        height: fit-content;
    }

    #pocetna {
        background: url(img/bg2516x1600.jpg);
        background-size: contain;
        background-attachment: fixed;
    }

    #pocetna h1 {
        padding-top: calc(10vh - 50px);
        text-align: center;
        font-size: 52pt;
        text-shadow: 8px 8px 20px #000000;
    }

    .aktuelno-container {
        padding: 200px 6px;
    }

    .aktuelno-text {
        font-size: 32px;
    }

    #emisije .column {
        height: fit-content;
    }
}