* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia,Times,Times New Roman,serif;
    scroll-behavior: smooth;
}

/*--------------------------HEADER------------------------------------*/

#header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00539C;
    position: sticky;
    top: 0;
    z-index: 1;
}

.header-list{
    display: inline-block;
    list-style: none;
}

#header-email-icon, #header-email, #header-phone-icon, #header-phone {
    color: white;
    font-weight: bold;
    vertical-align: middle;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    font-size: 0.8em;
    text-decoration: none;
}

#header-email:hover, #header-phone:hover {
    color: white;
    text-decoration: underline;
}

#header-jezici {
    margin-left: 0.4em;
    vertical-align: middle;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    margin-left: 0.8em;
    list-style: none;
    display: flex;
}

li img {
    min-width: none;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}

#header-phone {
    margin-right: 0.8em;
}

/*---------------------------------NAV----------------------------------------------*/

#nav {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #EEA47F;
    position: sticky;
    top: 0;
    z-index: 1;
}

#div-left {
    text-align: center;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    margin-left: 2em;
}

#nav-ime {
    color: black;
    font-weight: bold;
    font-size: 4em;
    font-family: 'Qwitcher Grypen', cursive;
}

#nav-lokacija {
    color: black;
    font-weight: normal;
    font-size: 1em;
    position: relative;
    bottom: 0.5em;
    right: 0.8em;
}

.nav-list{
    display: inline-block;
    list-style: none;
    font-size: 1.2em;
    padding: 0.5em;
    vertical-align: middle;
}

.nav-a {
    text-decoration: none;
    color: black;
    font-size: 1em;
    font-weight: normal;
}

.nav-a:hover {
    text-decoration: underline;
    color: black;
}

.nav-a:visited {
    text-decoration: none;
    color: black;
}

#kontakt {
    margin-right: 1em;
}

/*--------------------------DESTINACIJA----------------------------------*/

#destinacija {
    padding: 2em;
}

#destinacija-naslov {
    text-transform: uppercase;
    font-size: 2em;
    padding: 1em;
    text-align: center;
    background-color: #2e3231;
    color: white;
}

#destinacija-div {
    padding-left: 16em;
    padding-right: 16em;
    position: relative;
    background-color: #2e3231;
}

.destinacija-slika {
    width: 100%;
    display: none;
}

#destinacija-scroll {
    display: flex;
    gap: 1em;
    flex-wrap: nowrap;
    overflow: scroll;
    background-color: #2e3231;
    padding: 1em;
}

.destinacija-slika-scroll {
    width: auto;
    height: 8em;
    opacity: 0.6;
    cursor: pointer;
}

.destinacija-slika-scroll:hover, .destinacija-slika-scroll.active {
    opacity: 1;
}

#destinacija-scroll::-webkit-scrollbar {
    display: none;
}

.prevDestinacija {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0 0.3em 0.3em 0;
    user-select: none;
    -webkit-user-select: none;
}

.nextDestinacija {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0.3em 0 0 0.3em;
    user-select: none;
    -webkit-user-select: none;
}

.prevDestinacija:hover,
.nextDestinacija:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*------------------------APARTMAN----------------------------------*/

#apartman {
    padding: 2em;
}

#apartman-naslov {
    text-transform: uppercase;
    font-size: 2em;
    padding: 1em;
    text-align: center;
    background-color: #2e3231;
    color: white;
}

#apartman-div {
    padding-left: 16em;
    padding-right: 16em;
    position: relative;
    background-color: #2e3231;
}

.apartman-slika {
    width: 100%;
    display: none;
}

#apartman-scroll {
    display: flex;
    gap: 1em;
    flex-wrap: nowrap;
    overflow: scroll;
    background-color: #2e3231;
    padding: 1em;
}

.apartman-slika-scroll {
    width: auto;
    height: 8em;
    opacity: 0.6;
    cursor: pointer;
}

.apartman-slika-scroll:hover, .apartman-slika-scroll.active {
    opacity: 1;
}

#apartman-scroll::-webkit-scrollbar {
    display: none;
}

.prevApartman {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0 0.3em 0.3em 0;
    user-select: none;
    -webkit-user-select: none;
}

.nextApartman {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0.3em 0 0 0.3em;
    user-select: none;
    -webkit-user-select: none;
}

.prevApartman:hover,
.nextApartman:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------OKOLICA------------------------------*/

#okolica {
    padding: 2em;
}

#okolica-naslov {
    text-transform: uppercase;
    font-size: 2em;
    padding: 1em;
    text-align: center;
    background-color: #2e3231;
    color: white;
}

#okolica-div {
    padding-left: 16em;
    padding-right: 16em;
    position: relative;
    background-color: #2e3231;
}

.okolica-slika {
    width: 100%;
    display: none;
}

#okolica-scroll {
    display: flex;
    gap: 1em;
    flex-wrap: nowrap;
    overflow: scroll;
    background-color: #2e3231;
    padding: 1em;
}

.okolica-slika-scroll {
    width: auto;
    height: 8em;
    opacity: 0.6;
    cursor: pointer;
}

.okolica-slika-scroll:hover, .okolica-slika-scroll.active {
    opacity: 1;
}

#okolica-scroll::-webkit-scrollbar {
    display: none;
}

.prevOkolica {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0 0.3em 0.3em 0;
    user-select: none;
    -webkit-user-select: none;
}

.nextOkolica {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 0.8em;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border-radius: 0.3em 0 0 0.3em;
    user-select: none;
    -webkit-user-select: none;
}

.prevOkolica:hover,
.nextOkolica:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------FOOTER------------------------------*/

#footer {
    padding: 3em;
    background-color: #2e3231;
    display: flex;
    align-content: flex-start;
    gap: 2em;
}

#footer-div-left {
    display: inline-block;
    border-right: 0.05em solid white;
    text-align: center;
    padding: 1em;
}

#footer-ime {
    font-size: 2em;
    font-weight: normal;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1em;
}

#footer-adresa {
    font-size: 1em;
    font-weight: normal;
    color: white;
    margin-bottom: 1em;
}

#footer-phone {
    font-size: 1em;
    font-weight: normal;
    color: white;
    margin-bottom: 1em;
    display: block;
    text-decoration: none;
}

#footer-email {
    font-size: 1em;
    font-weight: normal;
    color: white;
    text-decoration: none;
}

#footer-email:hover, #footer-phone:hover {
    color: white;
    text-decoration: underline;
}

#footer-div-right {
    padding: 1em;
}

.footer-list{
    display: inline-block;
    list-style: none;
    font-size: 1em;
    font-weight: normal;
    color: white;
    padding: 0.5em;
    vertical-align: middle;
    text-transform: uppercase;
}

.footer-a {
    text-decoration: none;
    color: white;
}

.footer-a:hover {
    text-decoration: underline;
    color: white;
}

.footer-a:visited {
    text-decoration: none;
    color: white;
}