html {
    scroll-behavior: smooth;
}

body {
    background-color: #5f1629;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 0px;
    margin: 0px;
}



/* NAVIGACIJA */
.navigacija {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #5f1629;
}

.booknownavigacija {
    background-color: #FF6B6B;
    font-weight: bold;
}

.navigacijalinkovi {
    display: flex;
}

.navigacijalinkovi a {
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

.navigacijalinkovi a:hover {
    background-color: #FF6B6B;
    color: white;
}

.navigacijalinkovi a.booknownavigacija:hover {
    background-color: white;
    color: #5f1629;
}

.logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
}

.navigacija .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}



/* BANNER */

.heropicture img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    /* Center the image */
}

.heropicture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content .subheader {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content .booknowhero {
    padding: 10px 20px;
    background-color: #FF6B6B;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease-out;

}

.hero-content .booknowhero:hover {
    background-color: white;
    color: #5f1629;
}

/*ispodbannera*/

.ispodbannera {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    margin-bottom: 30px;
}

.ispodbanneraslika {
    flex: 1;
}

.ispodbanneraslika img {
    width: 50vw;
    height: auto;
}

.ispodbanneratekst {
    flex: 1;
    padding: 0 20px;
    margin-left: 10px;
}

.ispodbanneratekst h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ispodbanneratekst hr {
    border: none;
    border-top: 3px solid white;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 20%;
    margin-left: 10px;
}

.ispodbanneratekst p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booknowispodbannera {
    margin-top: 2rem;
}

.booknowispodbannera a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #FF6B6B;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: rem;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.booknowispodbannera a:hover {
    background-color: white;
    color: #5f1629;
}

/*accommodation*/
.accommodation {
    color: white;
    padding: 20px;
    margin-bottom: 150px;
}

.accommodation-header h2 {
    text-align: center;
    font-size: 2rem;
}

.accommodation-header hr {
    border: none;
    border-top: 3px solid white;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 200px;
    align-items: center;
}

.accommodation-header p {
    text-align: center;
    margin-bottom: 40px;
    align-items: center;
    padding-left: 200px;
    padding-right: 200px;
    font-size: 20px;
}

.accommodation-gallery {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.gallery-item {
    margin: 0.625rem;
    object-fit: cover;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.gallery-item h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.gallery-item p {
    font-size: 1rem;
    color: #777777;
}



/*features*/

.features-section {
    display: flex;
    flex-direction: column;
    background-color: #5f1629;
    color: #ffffff;
    margin-bottom: 50px;
}

.features-title {
    font-size: 1.9rem;
    text-align: center;
    margin: 50PX;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.feature-item {
    flex-basis: calc(33.333% - 10px);
    margin: 5px;
    box-sizing: border-box;
}

.feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    filter: invert(100%);
}

.feature-item p {
    font-size: 14px;
    color: white;
}


/*ispodbannera2*/

.ispodbannera2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5f1629;
    color: #ffffff;
    padding: 20px;
    gap: 20px;
}

.ispodbanneraslika2 {
    flex: 1;
    text-align: center;
    order: 2;
}

.ispodbanneraslika2 img {
    max-width: 100%;
    height: auto;
}

.ispodbanneratekst2 {
    flex: 1;
    padding: 0 20px;
    order: 1;
    margin-right: 10px;
    text-align: end;
}

.ispodbanneratekst2 h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ispodbanneratekst2 .hr-container {
    text-align: right;
    padding-right: 0px; /* Adjust this value as needed */
}

.ispodbanneratekst2 hr {
    border: none;
    border-top: 3px solid white;
    width: 20%;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
}

.ispodbanneratekst2 p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booknowispodbannera2 {
    margin-top: 2rem;
}

.booknowispodbannera2 a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #FF6B6B;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: rem;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.booknowispodbannera2 a:hover {
    background-color: white;
    color: #5f1629;
}

/*reviews*/

.reviews {
    margin-top: 50px;
    margin-bottom: 60px;
}

.reviews h2 {
    text-align: center;
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
}

/*footer*/

.footer-separator {
    border: none;
    height: 1px;
    background-color: #fff;
    margin-left: 10%;
    width: 80%;
}

.site-footer {
    background-color: #5f1629;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info a{
    text-decoration: underline;
    color: white;
}

.footer-info h4 {
    margin-bottom: 10px;
}

.footer-bottom a{
    color: white;
    text-decoration: underline;
}

.footer-bottom a:hover{
    color: #777777;
}

/* css for mobile*/

@media only screen and (max-width: 768px) {
    .navigacija .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 0;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 10px;
        top: 15px;
        z-index: 1001;
    }

    .navigacijalinkovi {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #5f1629;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .navigacijalinkovi.active {
        display: flex;
    }


    header {
        padding-bottom: 20px;
    }

    .heropicture {
        height: 100vh;
        position: relative;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .heropicture img {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .heropicture::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #fff;
        text-align: center;
        width: 90%;
        max-width: 600px;
        padding-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-content .subheader {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-content .booknowhero {
        font-size: 1rem;
        padding: 12px 24px;
        margin-top: 1rem;
    }

    .ispodbannera {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1px;
    }

    .ispodbanneratekst {
        order: 1;
        padding: 0 10px;
        margin: 0;
    }

    .ispodbanneratekst h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .ispodbanneratekst hr {
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    .ispodbanneratekst p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .ispodbanneraslika {
        order: 2;
        width: 90%;
        margin-top: 50px;
    }

    .ispodbanneraslika img {
        width: 100%;
        height: auto;
    }

    .booknowispodbannera {
        margin-top: 1rem;
    }

    .booknowispodbannera a {
        font-size: 1.2rem;
    }

    .features {
        justify-content: center;
    }

    .feature-item {
        flex-basis: calc(33.333% - 10px);
    }

    .ispodbannera2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1px;
        margin-bottom: 100px;
    }

    .ispodbanneratekst2 {
        order: 1;
        padding: 0 10px;
        margin: 0;
        text-align: center;
    }

    .ispodbanneratekst2 h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .ispodbanneratekst2 hr {
        margin-left: 25%;
        margin-right: 25%;
        width: 50%;
    }


    .ispodbanneratekst2 p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .ispodbanneraslika2 {
        order: 2;
        width: 90%;
        margin-top: 50px;
    }

    .ispodbanneraslika2 img {
        width: 100%;
        height: auto;
    }

    .booknowispodbannera2 {
        margin-top: 1rem;
    }

    .booknowispodbannera2 a {
        font-size: 1.2rem;
    }

    .accommodation {
        margin-bottom: 20px;
    }

    .accommodation-header p {
        padding: 0 15px;
    }

    .accommodation-gallery {
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-info,
    .footer-bottom {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-info p,
    .footer-bottom p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .footer-separator {
        margin-left: 5%;
        width: 90%;
    }

}