/* general */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #FFFCF1;
    font-family: "futura-pt", sans-serif;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* font */

h1,
h2 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 300;
    line-height: 1.2;
}

p,
.nearby__name {
    font-family: "futura-pt", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

/* header + nav */

.site-header {
    width: 100%;
    background-color: #ffffff;
}

.site-header__inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 100px;
    height: 55px;
    overflow: hidden;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: "Playfair Display", serif;
}

.main-nav > a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.main-nav > a:hover {
    opacity: 0.6;
}

.main-nav > a[aria-current="page"] {
    color: #ad8953;
}

.language-switcher,
.language-switcher a {
    display: flex;
    align-items: center;
}

.language-switcher img {
    display: block;
    width: 30px;
    height: auto;
}

.menu-toggle {
    display: none;
    padding: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle img {
    display: block;
    width: 32px;
    height: 32px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 25px 20px 30px;
    border-top: 1px solid #e5ded2;
    background-color: #ffffff;
}

.mobile-nav > a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.mobile-nav > a:hover {
    opacity: 0.6;
}

.mobile-nav > a[aria-current="page"] {
    color: #ad8953;
    font-weight: 700;
}

.mobile-nav.is-open {
    display: flex;
}

/* hero sekcija */

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 65px);
    background-image: url("../assets/images/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero__content {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 65px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 24px;
    text-align: center;
    color: antiquewhite;
}

.hero h1 {
    margin: 0;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__scroll span {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    opacity: 0;
    animation: heroScrollArrow 1.5s infinite;
}

.hero__scroll span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero__scroll span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes heroScrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-4px, -4px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(4px, 4px);
    }
}

.hero__button {
    margin-top: auto;
    margin-bottom: 65px;
    padding: 14px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* sekcija kuca */

.stay-section {
    padding: 60px 0;
}

.stay-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.stay-section__content h2,
.location-section__intro h2 {
    margin: 0;
}

.stay-section__line,
.location-section__line,
.moments-section__line {
    width: 60px;
    height: 2px;
    background-color: #ad8953;
    border-radius: 999px;
}

.stay-section__line,
.location-section__line {
    margin: 14px 0 30px;
}

.stay-section__content p {
    max-width: 650px;
    margin: 0 0 40px;
}

.stay-features {
    display: flex;
    align-items: flex-start;
    gap: 38px;
}

.stay-feature,
.location-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.stay-feature__icon,
.location-feature__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stay-feature__icon img,
.location-feature__icon img {
    width: 75px;
    height: 75px;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.stay-feature strong,
.location-feature strong {
    font-family: "futura-pt", sans-serif;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.stay-button,
.contact-form__button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    background-color: #ad8953;
    color: #ffffff;
    border: 1px solid #ad8953;
    border-radius: 10px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 450;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.stay-button:hover,
.contact-form__button:hover {
    opacity: 0.7;
}

/* galerija */

.stay-gallery {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 10px;
}

.stay-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
}

.stay-gallery__arrow,
.moments-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #000000;
    line-height: 1;
    cursor: pointer;
}

.stay-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    font-size: 32px;
}

.stay-gallery__arrow--prev {
    left: 16px;
}

.stay-gallery__arrow--next {
    right: 16px;
}

/* lokacija */

.location-section {
    padding: 40px 0;
}

.location-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.location-section__label,
.nearby__label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.location-section__label {
    margin: 0 0 12px;
}

.location-section__description {
    max-width: 650px;
    margin: 0;
}

.location-features {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.location-section__bottom {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.location-map {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
}

.nearby__label {
    margin: 0 0 20px;
}

.nearby__list {
    width: 100%;
}

.nearby__item {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ad8953;
}

.nearby__item span:not(.nearby__name) {
    text-align: center;
}

/* faq */

.faq-section {
    padding: 40px 0 70px;
    background-color: #f2eddf;
}

.faq-section__header {
    margin-bottom: 35px;
}

.faq-section__label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.faq-section__header h2 {
    margin: 0;
}

.faq-section__header h2 span,
.contact-section__intro h2 span {
    color: #ad8953;
}

.faq-list {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq {
    border: 1px solid #ded8ce;
    border-radius: 12px;
    overflow: hidden;
}

.obrazac {
    color: #ad9853;
    text-decoration: underline;
}

.faq-question-container {
    width: 100%;
    min-height: 68px;
    display: grid;
    grid-template-columns: 36px 1fr 25px;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 0;
    background: transparent;
    color: #000000;
    -webkit-text-fill-color: #000000;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    cursor: pointer;
}

.faq-question-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.faq-question-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.faq-icon--closed {
    opacity: 1;
}

.faq-icon--open {
    opacity: 0;
}

.faq.active .faq-icon--closed {
    opacity: 0;
}

.faq.active .faq-icon--open {
    opacity: 1;
}

.faq-questions {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    -webkit-text-fill-color: #000000;
}

.faq-open-icon {
    justify-self: end;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    -webkit-text-fill-color: #000000;
    transition: transform 0.25s ease;
}

.answer-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer {
    max-width: 850px;
    margin: 0;
    padding: 0 20px 20px 70px;
    font-family: "futura-pt", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.faq.active .answer-box {
    max-height: 300px;
}

.faq.active .faq-open-icon {
    transform: rotate(45deg);
}

/* footer */

.site-footer {
    padding: 35px 0;
    background-color: #d4cfc7;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.site-footer__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer__logo {
    display: block;
    width: 70px;
    height: 42px;
    object-fit: cover;
    object-position: center;
}

.site-footer__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 200;
    line-height: 1.2;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.site-footer__contact a,
.site-footer__bottom p {
    font-family: "futura-pt", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

.site-footer__contact a {
    text-decoration: none;
}

.site-footer__contact a:hover {
    color: #ad8953;
    opacity: 0.8;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__social a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer__social img {
    display: block;
    width: 48px;
    height: 48px;
    max-width: none;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social a:hover img {
    transform: translateY(-2px);
    opacity: 0.7;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(173, 137, 83, 0.35);
}

.site-footer__bottom p {
    margin: 0;
}

/* video */

.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-popup.is-open {
    display: flex;
}

.video-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-popup__content {
    position: relative;
    z-index: 1;
    width: min(900px, 90vw);
}

.video-popup__video {
    display: block;
    width: 100%;
    max-height: 80vh;
    background: #000000;
}

.video-popup__close {
    position: absolute;
    top: -45px;
    right: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

/* kontakt page */

.contact-section {
    padding: 90px 0;
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-section__intro {
    max-width: 420px;
}

.contact-section__label {
    margin: 0 0 14px;
    font-family: "futura-pt", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-section__intro h2 {
    margin: 0 0 26px;
}

.contact-section__intro h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 12px;
    background-color: #ad8953;
    border-radius: 999px;
}

.contact-section__text {
    margin: 0;
    font-family: "futura-pt", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.contact-card {
    padding: 36px 36px 32px;
    border: 1px solid #d8cfbf;
    border-radius: 18px;
    background-color: #faf7ef;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__group--small {
    max-width: 190px;
}

.contact-form label {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d8cfbf;
    border-radius: 10px;
    background-color: #faf7ef;
    font-family: "futura-pt", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8e8578;
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ad8953;
    box-shadow: 0 0 0 3px rgba(173, 137, 83, 0.12);
    background-color: #ffffff;
}

.contact-form__note {
    margin: 4px 0 0;
    font-family: "futura-pt", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-socials {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-socials a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d8cfbf;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    border-color: #ad8953;
}

.contact-socials__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-socials__icon img {
    display: block;
    width: 46px;
    height: 46px;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

.body_contact {
    background-color: #f2eddf;
}

/* galerija mobitel (2) */

.gallery-lightbox,
.moments-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.is-open,
.moments-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__background,
.moments-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.gallery-lightbox__image,
.moments-lightbox__image {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-lightbox__image {
    max-height: 88vh;
}

.moments-lightbox__image {
    max-height: 82vh;
    user-select: none;
}

.gallery-lightbox__close,
.moments-lightbox__close {
    position: fixed;
    z-index: 5;
    border: 0;
    background: transparent;
    color: #ffffff;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox__close {
    top: 25px;
    right: 35px;
    font-size: 45px;
}

.moments-lightbox__close {
    top: 22px;
    right: 30px;
    font-size: 46px;
    font-weight: 300;
}

.gallery-lightbox__arrow,
.moments-lightbox__arrow {
    position: fixed;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #222222;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox__arrow {
    width: 52px;
    height: 52px;
    font-size: 38px;
}

.moments-lightbox__arrow {
    width: 50px;
    height: 50px;
    font-size: 38px;
}

.gallery-lightbox__arrow--prev,
.moments-lightbox__arrow--prev {
    left: 30px;
}

.gallery-lightbox__arrow--next,
.moments-lightbox__arrow--next {
    right: 30px;
}

.moments-lightbox__caption {
    margin-top: 10px;
    font-family: "futura-pt", sans-serif;
    font-size: 14px;
    color: #ffffff;
}

/* galerija 2.1 */

.moments-section {
    padding: 40px 0 80px;
    background-color: #f2eddf;
}

.moments-section__header {
    margin-bottom: 34px;
}

.moments-section__header h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
}

.moments-section__line {
    margin-top: 14px;
}

.moments-slider {
    position: relative;
}

.moments-slider__arrow {
    display: none;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px 220px;
    gap: 16px;
}

.moments-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: 10px;
    background: none;
    cursor: pointer;
}

.moments-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.moments-item:hover img {
    transform: scale(1.035);
}

.moments-item span {
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    font-family: "futura-pt", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
}

.moments-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.20), transparent 35%);
    pointer-events: none;
}

.moments-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.moments-item--wide-top {
    grid-column: 3 / 5;
    grid-row: 1;
}

.moments-item--small-1 {
    grid-column: 3;
    grid-row: 2;
}

.moments-item--small-2 {
    grid-column: 4;
    grid-row: 2;
}

.moments-item--small-3 {
    grid-column: 1;
    grid-row: 3;
}

.moments-item--small-4 {
    grid-column: 2;
    grid-row: 3;
}

.moments-item--wide-bottom {
    grid-column: 3 / 5;
    grid-row: 3;
}

/* tablet  */

@media (max-width: 900px) {
    .stay-section__grid,
    .location-section__top,
    .location-section__bottom,
    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .stay-section__grid,
    .contact-section__grid {
        gap: 40px;
    }

    .location-section__top {
        gap: 35px;
        margin-bottom: 50px;
    }

    .location-section__bottom {
        gap: 40px;
    }

    .faq-list,
    .contact-section__intro {
        max-width: 100%;
    }

    .contact-section {
        padding: 70px 0;
    }

    /* Moments: na tabletu i mobitelu postaje slider */
    .moments-section {
        padding: 45px 0 55px;
    }

    .moments-section__header {
        margin-bottom: 25px;
    }

    .moments-grid {
        display: flex;
        width: 100%;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .moments-grid::-webkit-scrollbar {
        display: none;
    }

    .moments-item,
    .moments-item--large,
    .moments-item--wide-top,
    .moments-item--small-1,
    .moments-item--small-2,
    .moments-item--small-3,
    .moments-item--small-4,
    .moments-item--wide-bottom {
        flex: 0 0 100%;
        width: 100%;
        height: 320px;
        grid-column: auto;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .moments-slider__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .moments-slider__arrow--prev {
        left: 10px;
    }

    .moments-slider__arrow--next {
        right: 10px;
    }
}

/* mobilni prikaz */

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h2 {
        font-size: 27px;
    }

    /* Header */
    .site-header__inner {
        min-height: 60px;
    }

    .logo {
        width: 88px;
        height: 48px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        width: 100%;
    }

    /* Hero */
    .hero,
    .hero__content {
        min-height: calc(100svh - 60px);
    }

    .hero__content {
        padding: 45px 18px 30px;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .hero__button {
        margin-bottom: 130px;
        padding: 12px 22px;
        font-size: 15px;
    }

    /* KuÄa za odmor */
    .stay-section {
        padding: 45px 0;
    }

    .stay-section__grid {
        gap: 35px;
    }

    .stay-section__content p {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.6;
    }

    .stay-features {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        align-items: start;
    }

    .stay-feature {
        gap: 6px;
    }

    .stay-feature__icon {
        width: 36px;
        height: 36px;
    }

    .stay-feature__icon img {
        width: 46px;
        height: 46px;
    }

    .stay-feature strong {
        font-size: 12px;
        line-height: 1.2;
    }

    .stay-button {
        margin-top: 25px;
        padding: 14px 28px;
    }

    /* Prva galerija */
    .stay-gallery {
        height: 280px;
    }

    .stay-gallery__arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .stay-gallery__arrow--prev {
        left: 10px;
    }

    .stay-gallery__arrow--next {
        right: 10px;
    }

    /* Lightbox obje galerije */
    .gallery-lightbox,
    .moments-lightbox {
        padding: 15px;
    }

    .gallery-lightbox__image {
        max-width: 96vw;
        max-height: 80vh;
    }

    .moments-lightbox__image {
        max-width: 94vw;
        max-height: 78vh;
    }

    .gallery-lightbox__arrow,
    .moments-lightbox__arrow {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .gallery-lightbox__arrow--prev {
        left: 10px;
    }

    .gallery-lightbox__arrow--next {
        right: 10px;
    }

    .moments-lightbox__arrow--prev {
        left: 8px;
    }

    .moments-lightbox__arrow--next {
        right: 8px;
    }

    .gallery-lightbox__close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .moments-lightbox__close {
        top: 15px;
        right: 18px;
        font-size: 40px;
    }

    .moments-lightbox__caption {
        font-size: 13px;
    }

    /* Lokacija */
    .location-section {
        padding: 40px 0;
    }

    .location-section__top {
        gap: 30px;
        margin-bottom: 45px;
    }

    .location-section__description {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.6;
    }

    .location-features {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 6px;
        justify-content: initial;
    }

    .location-feature__icon {
        width: 50px;
        height: 50px;
    }

    .location-feature__icon img {
        width: 65px;
        height: 65px;
    }

    .location-feature strong {
        font-size: 15px;
    }

    .location-section__bottom {
        gap: 35px;
    }

    .location-map iframe {
        height: 300px;
    }

    .nearby__item {
        grid-template-columns: 1fr 52px 52px;
        gap: 6px;
        padding: 14px 0;
    }

    .nearby__name {
        font-size: 15px;
        line-height: 1.4;
    }

    .nearby__item span:not(.nearby__name) {
        font-size: 14px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0 50px;
    }

    .faq-section__header {
        margin-bottom: 25px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-question-container {
        min-height: 62px;
        grid-template-columns: 32px 1fr 20px;
        gap: 8px;
        padding: 12px;
    }

    .faq-question-icon {
        width: 28px;
        height: 28px;
    }

    .faq-questions {
        font-size: 15px;
        line-height: 1.35;
    }

    .faq-open-icon {
        font-size: 21px;
    }

    .faq-answer {
        padding: 0 14px 16px 52px;
        font-size: 14px;
        line-height: 1.5;
    }

    /* Footer */
    .site-footer {
        padding: 30px 0;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .site-footer__brand {
        gap: 12px;
    }

    .site-footer__title {
        font-size: 21px;
    }

    .site-footer__logo {
        width: 55px;
        height: 34px;
    }

    .site-footer__contact a,
    .site-footer__bottom p {
        font-size: 15px;
        line-height: 1.35;
    }

    .site-footer__social {
        align-self: flex-start;
        gap: 10px;
    }

    .site-footer__social a {
        width: 42px;
        height: 42px;
    }

    .site-footer__social img {
        width: 40px;
        height: 40px;
    }

    /* Video */
    .video-popup__content {
        width: 94vw;
    }

    .video-popup__close {
        top: -40px;
        font-size: 32px;
    }

    /* Kontakt */
    .contact-section {
        padding: 45px 0;
    }

    .contact-section__grid {
        gap: 35px;
    }

    .contact-card {
        width: 100%;
        padding: 24px 18px;
        border-radius: 14px;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form__group--small {
        max-width: 100%;
    }

    .contact-section__text {
        font-size: 16px;
    }

    .contact-form label {
        font-size: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 15px;
        padding: 14px;
    }

    .contact-form__button {
        width: 100%;
        text-align: center;
    }

    .contact-socials {
        flex-wrap: wrap;
    }
}