@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@400;500;600&display=swap');

/* Osnovne nastavitve */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background-color: white;
    padding-top: 90px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header */
.header {
    width: 100%;
    height: 90px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Navigacija */
.navbar {
    width: 100%;
    height: 90px;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 170px 1fr 170px;
    align-items: center;
}
.menu-button {
    display: none;
}

.mobile-reservation {
    display: none;
}

/* Logo */
.logo {
    justify-self: start;
}

.logo img {
    width: 170px;
    height: 90px;
    object-fit: contain;
    transform: scale(1.25);
    transform-origin: left center;
}

/* Meni */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #c69a3b;
}

/* Gumb */
.reservation-button {
    justify-self: end;   
    background-color: #c69a3b;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    min-width: 190px;
    padding: 14px 22px;

    display: flex;
    justify-content: center;
    align-items: center;

    white-space: nowrap;
    text-align: center
}

.reservation-button:hover {
    background-color: #aa7d25;
}
/* HERO SEKCIJA */

.hero {
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 0;

    display: grid;
    grid-template-columns: 55% 45%;

    background-color: #f8f1e8;
    overflow: hidden;
}
.hero-main-logo {
    width: 430px;
    max-width: 85%;
    height: auto;
    margin-bottom: 22px;
}

/* LEVA STRAN - SLIKA */

.hero-photo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-photo::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 230px;
    height: 100%;

    background: linear-gradient(
        to right,
        transparent,
        #f8f1e8
    );
}

/* DESNA STRAN - BESEDILO */

.hero-content {
    width: 100%;
    height: 100%;
    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-small-title {
    color: #765a3c;

    font-size: 18px;
    font-weight: 500;
    letter-spacing: 8px;

    margin-bottom: 10px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;

    color: #a97332;

    font-size: 100px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: 12px;
}

/* ZLATA ČRTA */

.hero-line {
    width: 330px;

    display: flex;
    align-items: center;
    gap: 15px;

    margin: 20px 0;
}

.hero-line span {
    width: 100%;
    height: 1px;

    background-color: #c69a3b;
}

.hero-line b {
    color: #c69a3b;
    font-size: 13px;
}

/* GLAVNO BESEDILO */

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;

    color: #66503b;

    font-size: 34px;
    font-style: italic;
    font-weight: 500;

    margin-bottom: 15px;
}

.hero-description {
    color: #4a4037;

    font-size: 16px;

    margin-bottom: 30px;
}

/* GUMB */

.hero-button {
    padding: 14px 30px;

    background-color: #c6922e;
    color: white;

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;

    border-radius: 5px;
}

.hero-button:hover {
    background-color: #a97823;
}
/* ===================================
   O APARTMAJU – RAČUNALNIK
=================================== */

.about {
    width: 100%;
    padding: 90px 5% 65px;
    background-color: #ffffff;
}
#apartma {
    scroll-margin-top: 90px;
}

/* Zgornji del: opis levo, slike desno */

.about-top {
    width: 100%;

    display: grid;
    grid-template-columns: 37% 63%;
    align-items: center;
    gap: 50px;
}

/* Besedilo */

.about-text {
    width: 100%;
}

.section-small-title {
    margin-bottom: 12px;

    color: #a97131;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
}

.about-text h2 {
    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
}

.about-text p {
    margin-bottom: 16px;

    color: #55504b;
    font-size: 16px;
    line-height: 1.8;
}

/* Tri fotografije */

.about-gallery {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-gallery img {
    width: 100%;
    height: 340px;

    object-fit: cover;
    object-position: center;

    border-radius: 5px;

    transition: transform 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.02);
}

/* ===================================
   PREDNOSTI – 8 IKON V ENI VRSTI
=================================== */

.features {
    width: 100%;

    margin-top: 30px;
    padding-top: 38px;

    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));

    border-top: 1px solid #eadfce;
}

.feature {
    min-width: 0;
    min-height: 125px;

    padding: 8px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border-right: 1px solid #eadfce;
}

.feature:last-child {
    border-right: none;
}

.feature img {
    width: 52px;
    height: 52px;

    margin-bottom: 12px;

    object-fit: contain;
}

.feature p {
    max-width: 135px;

    color: #5c5045;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}
/* ===================================
   RAZPOREDITEV LEŽIŠČ
=================================== */

.sleeping-layout {
    width: 100%;
    margin-top: 35px;
    padding: 24px 30px;

    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;

    background-color: #fbf6ef;
    border-top: 1px solid #dfc49f;
    border-bottom: 1px solid #dfc49f;
}

.sleeping-layout h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #765036;

    font-size: 27px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sleeping-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sleeping-item {
    min-height: 75px;
    padding: 5px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-left: 1px solid #dfc49f;
}

.sleeping-item img {
    width: 45px;
    height: 45px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    
}

.sleeping-item p {
    max-width: 130px;

    color: #5c5045;
    font-size: 13px;
    line-height: 1.35;
    max-width: none;
    white-space: nowrap
}
/* ===================================
   GALERIJA
=================================== */

.gallery-section {
    width: 100%;
    padding: 90px 5%;
    background-color: #fbf8f4;
    scroll-margin-top: 90px;
}

.gallery-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.gallery-heading .section-small-title {
    text-align: center;
}

.gallery-heading h2 {
    margin-bottom: 14px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
}

.gallery-intro {
    color: #625b55;
    font-size: 16px;
    line-height: 1.7;
}

/* Pet prikazanih slik */

.gallery-preview {
    width: 100%;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: repeat(2, 255px);
    gap: 12px;
}

.gallery-card {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 100%;

    padding: 0;
    border: none;
    border-radius: 7px;

    background: none;
    cursor: pointer;
}

.gallery-card:first-child {
    grid-row: 1 / 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

/* Prikaži vse fotografije */

.gallery-show-all {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    background-color: rgba(32, 25, 19, 0.55);
    color: white;

    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;

    transition: background-color 0.3s ease;
}

.gallery-card:hover .gallery-show-all {
    background-color: rgba(32, 25, 19, 0.68);
}

/* ===================================
   ODPRTA GALERIJA
=================================== */

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(18, 15, 12, 0.93);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    z-index: 10000;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 82vh;

    object-fit: contain;

    border-radius: 5px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);

    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-counter {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* X */

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 25px;

    width: 50px;
    height: 50px;

    background: none;
    border: none;

    color: white;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    z-index: 2;
}

/* Puščice */

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: white;
    font-size: 28px;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

.lightbox-arrow:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* ===================================
   LOKACIJA
=================================== */

.location-section {
    width: 100%;
    padding: 90px 5%;
    background-color: #ffffff;
    scroll-margin-top: 90px;
}

.location-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.location-heading .section-small-title {
    text-align: center;
}

.location-heading h2 {
    margin-bottom: 15px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 50px;
    font-weight: 500;
}

.location-heading > p:last-child {
    color: #625b55;
    font-size: 16px;
    line-height: 1.7;
}

/* OPIS + ZEMLJEVID */

.location-main {
    width: 100%;

    display: grid;
    grid-template-columns: 36% 64%;
    gap: 30px;
}

.location-info {
    padding: 40px;

    background-color: #fbf6ef;
    border: 1px solid #ead8bf;
    border-radius: 8px;
}

.location-info h3 {
    margin-bottom: 15px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 32px;
    font-weight: 500;
}

.location-description {
    margin-bottom: 28px;

    color: #5f5852;
    font-size: 15px;
    line-height: 1.75;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 17px;

    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-detail img {
    width: 34px;
    height: 34px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.location-detail div {
    display: flex;
    flex-direction: column;
}

.location-detail strong {
    margin-bottom: 2px;

    color: #4e4035;
    font-size: 14px;
    font-weight: 600;
}

.location-detail span {
    color: #77706a;
    font-size: 12px;
}

.location-button {
    display: inline-block;

    padding: 14px 27px;

    background-color: #cf9425;
    color: white;

    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    border-radius: 4px;
}

.location-button:hover {
    background-color: #ad761e;
}

/* ZEMLJEVID */

.location-map {
    min-height: 470px;
    overflow: hidden;

    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(70, 49, 32, 0.12);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 470px;

    display: block;
    border: 0;
}

/* SKUPNI PODNASLOVI */

.location-subheading {
    margin-bottom: 30px;
    text-align: center;
}

.location-subheading .section-small-title {
    text-align: center;
}

.location-subheading h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 38px;
    font-weight: 500;
}

/* V BLIŽINI */

.nearby {
    margin-top: 80px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    border-top: 1px solid #eadfce;
    border-bottom: 1px solid #eadfce;
}

.nearby-item {
    min-height: 135px;
    padding: 22px 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border-right: 1px solid #eadfce;
}

.nearby-item:last-child {
    border-right: none;
}

.nearby-item img {
    width: 70px;
    height: 70px;

    margin-bottom: 12px;
    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.nearby-item p {
    max-width: 145px;

    color: #5c5045;
    font-size: 12px;
    line-height: 1.4;
}
/* ===================================
   KAJ POČETI
=================================== */

.activities-section {
    width: 100%;
    padding: 90px 5%;

    background-color: #fbf8f4;

    scroll-margin-top: 90px;
}

.activities-heading {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.activities-heading .section-small-title {
    text-align: center;
}

.activities-heading h2 {
    margin-bottom: 15px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
}

.activities-heading > p:last-child {
    color: #625b55;

    font-size: 16px;
    line-height: 1.7;
}

/* MREŽA KARTIC */

.activities-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, 260px);

    gap: 16px;
}

/* POSAMEZNA KARTICA */

.activity-card {
    padding: 28px;

    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: center;
    gap: 20px;

    background-color: #ffffff;

    border: 1px solid #ead8bf;
    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-4px);

    border-color: #d7b47f;

    box-shadow: 0 12px 30px rgba(80, 55, 35, 0.09);
}

/* GLAVNA KARTICA */

.activity-card-main {
    grid-row: 1 / 3;

    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(251, 246, 239, 0.96),
            rgba(251, 246, 239, 0.96)
        );

    text-align: center;
}

.activity-card-main .activity-icon img {
    width: 115px;
    height: 115px;
}

.activity-card-main .activity-card-content {
    max-width: 410px;
}

.activity-card-main h3 {
    font-size: 39px;
}

.activity-label {
    margin-bottom: 8px;

    color: #b57b2a;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* IKONE */

.activity-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.activity-icon img {
    width: 100px;
    height: 100px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* BESEDILO */

.activity-card h3 {
    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 27px;
    font-weight: 500;
    line-height: 1.05;
}

.activity-card-content > p:not(.activity-label) {
    margin-bottom: 18px;

    color: #665f59;

    font-size: 13px;
    line-height: 1.55;
}

/* GUMB */

.activity-button {
    padding: 10px 18px;

    background-color: transparent;
    color: #a97131;

    border: 1px solid #c99b5b;
    border-radius: 4px;

    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.activity-button:hover {
    background-color: #c6922e;
    color: white;
}

/* ===================================
   OKNO PREBERI VEČ
=================================== */

body.activity-modal-open {
    overflow: hidden;
}

.activity-modal {
    position: fixed;
    inset: 0;

    padding: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(35, 27, 21, 0.74);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    z-index: 12000;
}

.activity-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.activity-modal-window {
    position: relative;

    width: 100%;
    max-width: 720px;
    max-height: 85vh;

    padding: 50px 55px;

    overflow-y: auto;

    background-color: #fbf6ef;

    border: 1px solid #dcb984;
    border-radius: 10px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.activity-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;

    width: 42px;
    height: 42px;

    background: none;
    border: none;

    color: #5d4939;

    font-size: 36px;
    line-height: 1;

    cursor: pointer;
}

.activity-modal-icon {
    width: 90px;
    height: 90px;

    margin-bottom: 18px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.activity-modal-label {
    margin-bottom: 8px;

    color: #b57b2a;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.activity-modal-window h3 {
    margin-bottom: 22px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 40px;
    font-weight: 500;
}

.activity-modal-text p {
    margin-bottom: 16px;

    color: #5f5852;

    font-size: 15px;
    line-height: 1.75;
    text-align: left;
}

.activity-modal-text p:last-child {
    margin-bottom: 0;
}
.about-gallery {
    position: relative;
}

.pool-tickets-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 145px;
    height: 145px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(255, 252, 247, 0.95);

    border: 1px solid #c99b5b;
    border-radius: 50%;

    text-align: center;

    box-shadow: 0 8px 25px rgba(74, 48, 29, 0.15);

    z-index: 3;
}

.pool-tickets-badge span {
    margin-bottom: 6px;

    color: #b27828;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.pool-tickets-badge strong {
    font-family: 'Cormorant Garamond', serif;

    color: #68452d;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.05;
}
/* ===================================
   KONTAKT
=================================== */

.contact-section {
    width: 100%;
    padding: 95px 5%;

    background-color: #fbf8f4;

    scroll-margin-top: 90px;
}

.contact-intro {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.contact-intro .section-small-title {
    text-align: center;
}

.contact-intro h2 {
    margin-bottom: 16px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
}

.contact-intro > p:last-child {
    color: #665f59;

    font-size: 16px;
    line-height: 1.7;
}


/* GLAVNA POSTAVITEV */

.contact-content {
    width: 100%;

    display: grid;
    grid-template-columns: 0.95fr 1.25fr;

    border: 1px solid #e2cfb3;
    border-radius: 8px;

    overflow: hidden;

    background-color: white;
}


/* LEVA STRAN */

.contact-main {
    padding: 65px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: #f4eadc;
}

.contact-small-title {
    margin-bottom: 15px;

    color: #b17829;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.4px;
}

.contact-main h3 {
    max-width: 480px;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;
    color: #68452d;

    font-size: 39px;
    font-weight: 500;
    line-height: 1.12;
}

.contact-main > p:not(.contact-small-title) {
    max-width: 490px;

    margin-bottom: 30px;

    color: #625a53;

    font-size: 15px;
    line-height: 1.75;
}

.contact-reservation-button {
    width: fit-content;

    padding: 14px 25px;

    background-color: #bd842e;
    color: white;

    border: 1px solid #bd842e;
    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-reservation-button:hover {
    background-color: #9e6923;
    border-color: #9e6923;

    transform: translateY(-2px);
}


/* KONTAKTNE KARTICE */

.contact-cards {
    display: flex;
    flex-direction: column;
}

.contact-card {
    min-height: 150px;

    padding: 30px 35px;

    display: grid;
    grid-template-columns: 48px 1fr 35px;
    align-items: center;
    gap: 20px;

    color: inherit;
    text-decoration: none;

    border-bottom: 1px solid #eadfce;

    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease;
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card:hover {
    padding-left: 43px;

    background-color: #fcf7f0;
}

.contact-card-number {
    color: #c59a60;

    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
}

.contact-card-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.contact-card-text span {
    color: #a67536;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.contact-card-text strong {
    color: #60432e;

    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;

    overflow-wrap: anywhere;
}

.contact-card-arrow {
    color: #b8813a;

    font-size: 25px;

    transition: transform 0.25s ease;
}

.contact-card:hover .contact-card-arrow {
    transform: translateX(5px);
}


/* ===================================
   FOOTER
=================================== */

.footer {
    width: 100%;

    background-color: #503827;
    color: #f5eadc;
}

.footer-main {
    width: 100%;

    padding: 65px 5% 55px;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.1fr 1fr;

    gap: 55px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}

.footer-logo img {
    width: 180px;
    max-height: 100px;

    object-fit: contain;

    filter: brightness(0) invert(1);

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.footer-brand p,
.footer-column p {
    color: rgba(255, 248, 240, 0.75);

    font-size: 13px;
    line-height: 1.75;
}

.footer-column h3 {
    margin-bottom: 22px;

    color: #ddb77e;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-links a,
.footer-contact a {
    width: fit-content;

    color: rgba(255, 248, 240, 0.84);

    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #e5bd7e;
}

.footer-reservation p {
    margin-bottom: 22px;
}

.footer-button {
    display: inline-block;

    width: fit-content;

    padding: 12px 20px;

    border: 1px solid #d7ae73;
    border-radius: 3px;

    color: #fff7eb;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.footer-button:hover {
    background-color: #d7ae73;
    color: #503827;
}


/* SPODNJI DEL FOOTERJA */

.footer-bottom {
    padding: 20px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 248, 240, 0.6);

    font-size: 11px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #e5bd7e;
}



/* NUJNO DA SLIKE DELAJO */
.about-gallery img,
.hero-photo img,
.hero-main-logo,
.feature,
.nearby-item{
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}
/*________________________*/


/* ===================================
   POLITIKA ZASEBNOSTI
=================================== */

.privacy-page {
    margin: 0;
    padding-top: 0;

    background-color: #fbf8f4;
    color: #5f5852;
}


/* GLAVA */

.privacy-header {
    width: 100%;
    min-height: 82px;

    padding: 18px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    background-color: #ffffff;

    border-bottom: 1px solid #eadfce;
}

.privacy-brand {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.privacy-brand img {
    width: 170px;
    height: 60px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.privacy-back {
    color: #8c632f;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    transition: color 0.2s ease;
}

.privacy-back:hover {
    color: #68452d;
}


/* GLAVNA VSEBINA */

.privacy-main {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 85px 35px 100px;
}

.privacy-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.privacy-label {
    margin-bottom: 12px;

    color: #b57b2a;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.privacy-heading h1 {
    margin-bottom: 18px;

    color: #68452d;

    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.05;
}

.privacy-heading > p:not(.privacy-label) {
    margin-bottom: 18px;

    color: #6b635d;

    font-size: 16px;
    line-height: 1.75;
}

.privacy-updated {
    color: #a3978c;

    font-size: 11px;
    letter-spacing: 0.5px;
}


/* BELA KARTICA */

.privacy-content {
    padding: 10px 55px;

    background-color: #ffffff;

    border: 1px solid #eadbc7;
    border-radius: 8px;

    box-shadow: 0 15px 45px rgba(75, 52, 33, 0.06);
}


/* POSAMEZNA POGLAVJA */

.privacy-section {
    padding: 45px 0;

    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    border-bottom: 1px solid #eee4d7;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-number {
    color: #c69b63;

    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
}

.privacy-section h2 {
    margin-bottom: 18px;

    color: #68452d;

    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.15;
}

.privacy-section p {
    margin-bottom: 14px;

    color: #625b55;

    font-size: 14px;
    line-height: 1.8;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 5px 0 18px;
    padding-left: 21px;
}

.privacy-section li {
    margin-bottom: 8px;

    color: #625b55;

    font-size: 14px;
    line-height: 1.7;
}

.privacy-section a {
    color: #a97131;

    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-section a:hover {
    color: #68452d;
}


/* PODATKI UPRAVLJAVCA */

.privacy-contact-box {
    margin-top: 22px;
    padding: 24px 28px;

    background-color: #fbf6ef;

    border-left: 3px solid #c99b5b;
}

.privacy-contact-box p {
    margin-bottom: 8px;
}


/* FOOTER */

.privacy-footer {
    padding: 25px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    background-color: #503827;
}

.privacy-footer p,
.privacy-footer a {
    color: rgba(255, 248, 240, 0.72);

    font-size: 11px;
    text-decoration: none;
}

.privacy-footer div {
    display: flex;
    gap: 22px;
}

.privacy-footer a:hover {
    color: #e5bd7e;
}
/* ===================================
   POVPRAŠEVANJE
=================================== */

.inquiry-page {
    margin: 0;
    padding-top: 0;

    background-color: #fbf8f4;
    color: #625b55;
}

.inquiry-page * {
    box-sizing: border-box;
}


/* GLAVA */

.inquiry-header {
    width: 100%;
    min-height: 82px;

    padding: 12px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    background-color: #ffffff;

    border-bottom: 1px solid #eadfce;
}

.inquiry-logo {
    display: flex;
    align-items: center;
}

.inquiry-logo img {
    width: 175px;
    height: 60px;

    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.inquiry-back {
    color: #96682d;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    transition: color 0.2s ease;
}

.inquiry-back:hover {
    color: #68452d;
}


/* GLAVNI DEL */

.inquiry-main {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 75px 5% 95px;
}


/* NASLOV */

.inquiry-heading {
    max-width: 780px;

    margin: 0 auto 45px;

    text-align: center;
}

.inquiry-label {
    margin-bottom: 12px;

    color: #b57b2a;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.7px;
}

.inquiry-heading h1 {
    margin-bottom: 17px;

    color: #68452d;

    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.05;
}

.inquiry-heading > p:last-child {
    color: #6a625c;

    font-size: 16px;
    line-height: 1.75;
}


/* POSTAVITEV */

.inquiry-layout {
    width: 100%;

    display: grid;
    grid-template-columns: 0.85fr 1.4fr;

    background-color: #ffffff;

    border: 1px solid #e4d2b9;
    border-radius: 9px;

    overflow: hidden;

    box-shadow: 0 18px 55px rgba(75, 52, 33, 0.07);
}


/* LEVA STRAN */

.inquiry-info {
    padding: 60px 48px;

    background-color: #f2e6d7;
}

.inquiry-info-label {
    margin-bottom: 15px;

    color: #b17829;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.3px;
}

.inquiry-info h2 {
    margin-bottom: 20px;

    color: #68452d;

    font-family: 'Cormorant Garamond', serif;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.12;
}

.inquiry-info-description {
    margin-bottom: 37px;

    color: #665e57;

    font-size: 14px;
    line-height: 1.75;
}


/* PREDNOSTI */

.inquiry-benefits {
    margin-bottom: 38px;

    border-top: 1px solid #ddc4a1;
}

.inquiry-benefit {
    padding: 21px 0;

    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;

    border-bottom: 1px solid #ddc4a1;
}

.inquiry-benefit > span {
    color: #b88748;

    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
}

.inquiry-benefit strong {
    display: block;

    margin-bottom: 5px;

    color: #68452d;

    font-size: 13px;
    font-weight: 600;
}

.inquiry-benefit p {
    color: #70665e;

    font-size: 12px;
    line-height: 1.55;
}


/* KONTAKT */

.inquiry-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 7px;
}

.inquiry-contact p {
    margin-bottom: 3px;

    color: #9f7137;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.inquiry-contact a {
    color: #68452d;

    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    text-decoration: none;

    overflow-wrap: anywhere;
}

.inquiry-contact a:hover {
    color: #b47b2f;
}


/* OBRAZEC */

.inquiry-form-card {
    padding: 55px 55px 50px;

    background-color: #ffffff;
}

.inquiry-form {
    width: 100%;
}

.inquiry-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.inquiry-field {
    margin-bottom: 23px;

    display: flex;
    flex-direction: column;
}

.inquiry-field label {
    margin-bottom: 9px;

    color: #654a36;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.inquiry-field label span {
    color: #b57b2a;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;

    padding: 14px 15px;

    background-color: #fcfaf7;
    color: #514943;

    border: 1px solid #dfcfbb;
    border-radius: 4px;

    outline: none;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.inquiry-field input,
.inquiry-field select {
    height: 50px;
}

.inquiry-field textarea {
    min-height: 135px;

    resize: vertical;
    line-height: 1.6;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    background-color: #ffffff;

    border-color: #c3924d;

    box-shadow: 0 0 0 3px rgba(195, 146, 77, 0.11);
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
    color: #a89e95;
}


/* OPOMBA O KAPACITETI */

.inquiry-capacity-note {
    margin-top: -11px;
    margin-bottom: 20px;

    color: #95877c;

    font-size: 11px;
}


/* OTROŠKA POSTELJICA */

.inquiry-option {
    width: fit-content;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #615950;

    font-size: 12px;

    cursor: pointer;
}

.inquiry-option input {
    width: 17px;
    height: 17px;

    accent-color: #b98032;
}


/* POLITIKA */

.inquiry-privacy {
    margin-top: 5px;
    margin-bottom: 25px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: #726960;

    font-size: 11px;
    line-height: 1.6;

    cursor: pointer;
}

.inquiry-privacy input {
    width: 17px;
    height: 17px;

    margin-top: 1px;

    flex-shrink: 0;

    accent-color: #b98032;
}

.inquiry-privacy a {
    color: #9d6b2c;

    font-weight: 600;
    text-underline-offset: 3px;
}


/* NAPAKA */

.inquiry-error {
    min-height: 20px;

    margin-bottom: 7px;

    color: #a23f32;

    font-size: 12px;
    font-weight: 500;
}


/* SPODNJI DEL OBRAZCA */

.inquiry-form-bottom {
    padding-top: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    border-top: 1px solid #eadfce;
}

.inquiry-form-bottom p {
    max-width: 330px;

    color: #93877c;

    font-size: 10px;
    line-height: 1.55;
}

.inquiry-submit {
    min-width: 215px;

    padding: 15px 24px;

    background-color: #bd842e;
    color: #ffffff;

    border: 1px solid #bd842e;
    border-radius: 4px;

    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.inquiry-submit:hover {
    background-color: #9e6923;

    transform: translateY(-2px);
}

.inquiry-submit:disabled {
    opacity: 0.7;

    cursor: wait;
    transform: none;
}


/* FOOTER */

.inquiry-footer {
    padding: 23px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    background-color: #503827;
}

.inquiry-footer p,
.inquiry-footer a {
    color: rgba(255, 248, 240, 0.7);

    font-size: 11px;
    text-decoration: none;
}

.inquiry-footer div {
    display: flex;
    gap: 22px;
}

.inquiry-footer a:hover {
    color: #e5bd7e;
}




















/* ===================================
   IPAD
=================================== */

@media (min-width: 701px) and (max-width: 1300px) {

    body {
        padding-top: 80px;
    }

    /* HEADER */

    .header {
        height: 80px;
    }

    .navbar {
        width: 100%;
        height: 80px;
        padding: 0 25px;

        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        width: 190px;
        height: 68px;
        object-fit: contain;
        transform: none;
    }

    /* Skrij desktop gumb */

    .reservation-button {
        display: none;
    }

    /* HAMBURGER */

    .menu-button {
        display: flex;

        width: 44px;
        height: 44px;
        padding: 9px;

        flex-direction: column;
        justify-content: center;
        gap: 6px;

        background: transparent;
        border: none;

        cursor: pointer;
        z-index: 6000;
    }

    .menu-button span {
        display: block;

        width: 26px;
        height: 2px;

        background-color: #222;
        border-radius: 2px;

        transition: 0.3s ease;
    }

    .menu-button.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* MOBILNI MENI NA IPADU */

    .nav-links {
        position: fixed;

        top: 80px;
        left: 0;
        right: 0;

        width: 100%;
        padding: 25px 30px 30px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;

        background-color: rgba(255, 255, 255, 0.86);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        pointer-events: none;

        transition: 0.3s ease;

        z-index: 5000;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        max-width: 420px;
    }

    .nav-links a {
        display: block;

        width: 100%;
        padding: 13px;

        color: #28231f;
        font-size: 17px;
        text-align: center;

        border-bottom: 1px solid rgba(120, 90, 50, 0.08);
    }

    .mobile-reservation {
        display: block;
        margin-top: 15px;
    }

    .mobile-reservation a {
        padding: 14px 20px;

        background-color: #d39925;
        color: white;

        font-weight: 600;

        border: none;
        border-radius: 4px;
    }
    .hero {
        height: calc(100svh - 80px);
        min-height: calc(100svh - 80px);
    }

    /* Da header ne prekrije naslova */

    #apartma {
        scroll-margin-top: 80px;
    }

    /* O APARTMAJU */

    .about {
        padding: 75px 35px 55px;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        width: 100%;
        max-width: 800px;
    }

    .about-text h2 {
        font-size: 44px;
    }

    /* TRI SLIKE */

    .about-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .about-gallery img {
        height: 290px;
    }

    /* 8 IKON: 4 + 4 */

    .features {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 0;
    }

    .feature {
        min-height: 140px;
        padding: 18px 12px;

        border-right: 1px solid #eadfce;
        border-bottom: 1px solid #eadfce;
    }

    .feature:nth-child(4n) {
        border-right: none;
    }

    .feature:nth-last-child(-n + 4) {
        border-bottom: none;
    }

    .feature img {
        width: 55px;
        height: 55px;
    }

    .feature p {
        max-width: 170px;
        font-size: 13px;
    }
    .sleeping-layout {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 25px 30px;
    }

    .sleeping-layout h3 {
        text-align: center;
    }

    .sleeping-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .sleeping-item {
        padding: 15px;
        border-left: none;
        border-bottom: 1px solid #dfc49f;
    }

    .sleeping-item:nth-child(odd) {
        border-right: 1px solid #dfc49f;
    }

    .sleeping-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
/* ===================================
   GALERIJA – IPAD
=================================== */

    .gallery-heading h2 {
        font-size: 46px;
    }

    .gallery-preview {
        grid-template-rows: repeat(2, 220px);
        gap: 10px;
    }
    #galerija {
        scroll-margin-top: 0 !important;
    }

    .gallery-section {
        padding: 105px 35px 75px;
    }

    .location-section {
        padding: 75px 35px;
        scroll-margin-top: 80px;
    }

    .location-heading h2 {
        font-size: 46px;
    }

    .location-main {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 35px;
    }

    .location-map,
    .location-map iframe {
        min-height: 420px;
    }

    .nearby-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nearby-item {
        border-right: 1px solid #eadfce;
        border-bottom: 1px solid #eadfce;
    }

/* Tretji in šesti element nimata desne črte */
    .nearby-item:nth-child(3n) {
        border-right: none;
    }

    /* Zadnja vrstica nima spodnje črte */
    .nearby-item:nth-last-child(-n + 3) {
        border-bottom: none;
    }

    /* Prekliče morebitna stara pravila */
    .nearby-item:last-child {
        grid-column: auto;
        border-right: none;
    }
    .activities-section {
        padding: 75px 35px;

        scroll-margin-top: 80px;
    }

    .activities-heading h2 {
        font-size: 46px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;

        gap: 14px;
    }

    .activity-card-main {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: 330px;
    }

    .activity-card {
        min-height: 230px;
    }

    .activity-card-main .activity-icon img {
        width: 100px;
        height: 100px;
    }


    .contact-section {
        padding: 75px 35px;

        scroll-margin-top: 80px;
    }

    .contact-intro h2 {
        font-size: 46px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-main {
        padding: 50px 45px;
    }

    .contact-main h3 {
        font-size: 37px;
    }

    .contact-card {
        min-height: 135px;
    }

    .footer-main {
        padding: 55px 35px 45px;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px;
    }

    .footer-bottom {
        padding: 20px 35px;
    }

    /* POVPRAŠEVANJE */

    .inquiry-main {
        padding: 65px 35px 80px;
    }

    .inquiry-heading h1 {
        font-size: 49px;
    }

    .inquiry-layout {
        grid-template-columns: 0.9fr 1.3fr;
    }

    .inquiry-info {
        padding: 48px 35px;
    }

    .inquiry-info h2 {
        font-size: 34px;
    }

    .inquiry-form-card {
        padding: 45px 35px;
    }

    .inquiry-form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .inquiry-submit {
        width: 100%;
    }

}






























/*  TELEFON */

@media (max-width: 700px) {

    body {
        padding-top: 72px;
        overflow-x: hidden;
    }

    /* =====================
       HEADER
    ===================== */

    .header {
        height: 72px;
        background-color: rgba(255, 255, 255, 0.96);
    }

    .navbar {
        width: 100%;
        height: 72px;
        padding: 0 20px;

        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        width: 175px;
        height: 60px;
        object-fit: contain;
        transform: none;
    }

    .reservation-button {
        display: none;
    }

    /* =====================
       HAMBURGER GUMB
    ===================== */

    .menu-button {
        display: flex;
        width: 42px;
        height: 42px;

        padding: 9px;

        flex-direction: column;
        justify-content: center;
        gap: 6px;

        background: transparent;
        border: none;

        cursor: pointer;
        z-index: 6000;
    }

    .menu-button span {
        display: block;
        width: 24px;
        height: 2px;

        background-color: #222;
        border-radius: 2px;

        transition: 0.3s ease;
    }

    /* Hamburger postane X */

    .menu-button.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* =====================
       MOBILNI MENI
    ===================== */

    .nav-links {
        position: fixed;

        top: 72px;
        left: 0;
        right: 0;

        width: 100%;
        padding: 22px 25px 28px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;

        background-color: rgba(255, 255, 255, 0.82);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border-top: 1px solid rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(180, 140, 70, 0.18);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 5000;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        max-width: 320px;
    }

    .nav-links a {
        display: block;
        width: 100%;

        padding: 12px 10px;

        color: #28231f;
        font-size: 16px;
        font-weight: 500;
        text-align: center;

        border-bottom: 1px solid rgba(120, 90, 50, 0.08);

        transition:
            color 0.2s ease,
            background-color 0.2s ease;
    }

    .nav-links a:hover {
        color: #b57a25;
        background-color: rgba(248, 241, 232, 0.65);
    }

    .mobile-reservation {
        display: block;
        margin-top: 14px;
    }

    .mobile-reservation a {
        padding: 14px 20px;

        background-color: #d39925;
        color: white;

        font-weight: 600;

        border: none;
        border-radius: 4px;
    }

    .mobile-reservation a:hover {
        background-color: #b77b1f;
        color: white;
    }

    /* =====================
       HERO
    ===================== */

    .hero {
        width: 100%;
        min-height: calc(100svh - 72px);

        display: flex;
        flex-direction: column;

        background-color: #f8f1e8;
        overflow: hidden;
    }

    /* SLIKA */

    .hero-photo {
        width: 100%;
        height: 41svh;

        min-height: 300px;
        max-height: 370px;

        position: relative;
        flex-shrink: 0;
        overflow: hidden;
    }

    .hero-photo img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }

    /* Mehak prehod iz slike v krem ozadje */

    .hero-photo::after {
    content: "";

    position: absolute;
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;

    width: 100%;
    height: 110px;

    background: linear-gradient(
        to bottom,
        rgba(248, 241, 232, 0) 0%,
        rgba(248, 241, 232, 0.25) 35%,
        rgba(248, 241, 232, 0.75) 75%,
        #f8f1e8 100%
    );

    pointer-events: none;
    z-index: 1;
}

    /* KREM VSEBINA */

    .hero-content {
        width: 100%;
        flex: 1;

        margin-top: -1px;
        padding: 25px 20px 35px;

        background-color: #f8f1e8;

        border-radius: 0;
        box-shadow: none;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;

        position: relative;
        z-index: 2;
    }

    .hero-main-logo {
        width: 260px;
        max-width: 88%;
        height: auto;

        margin-bottom: 22px;
    }

    .hero-content h2 {
        max-width: 390px;

        font-size: 25px;
        line-height: 1.25;

        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-button {
        width: 100%;
        max-width: 235px;

        padding: 14px 20px;

        text-align: center;
    }


    #apartma {
        scroll-margin-top: 70px;
    }

    .about {
        min-height: calc(100svh - 72px);
        padding: 60px 20px 45px;
    }

    .about-top {
        display: block;
    }

    /* Besedilo */

    .about-text {
        width: 100%;
        margin-bottom: 35px;

        text-align: center;
    }

    .section-small-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .about-text h2 {
        margin-bottom: 20px;

        font-size: 37px;
        line-height: 1.1;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Slike */

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-gallery img {
        height: 155px;
        border-radius: 4px;
    }

    /* Prva slika je večja */

    .about-gallery img:first-child {
        grid-column: 1 / -1;
        height: 230px;
    }

    /* Ikone: dve v vrsti */

    .features {
    margin-top: 50px;
    padding-top: 28px;
    grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        min-height: 135px;
        padding: 18px 10px;

        border-right: 1px solid #eadfce;
        border-bottom: 1px solid #eadfce;
    }

    .feature:nth-child(even) {
        border-right: none;
    }

    .feature:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .feature img {
        width: 52px;
        height: 52px;
    }

    .feature p {
        max-width: 145px;
        font-size: 13px;
    }
    .features .feature {
    border-bottom: 1px solid #eadfce;
    }

    .features .feature:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .sleeping-layout {
        width: 100%;
        margin-top: 35px;
        padding: 24px 15px;

        display: block;
    }

    .sleeping-layout h3 {
        margin-bottom: 20px;

        font-size: 26px;
        text-align: center;
    }

    .sleeping-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .sleeping-item {
        min-height: 115px;
        padding: 15px 8px;

        flex-direction: column;
        gap: 9px;

        text-align: center;

        border-left: none;
        border-bottom: 1px solid #dfc49f;
    }

    .sleeping-item:nth-child(odd) {
        border-right: 1px solid #dfc49f;
    }

    .sleeping-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .sleeping-item img {
        width: 48px;
        height: 48px;
    }

    .sleeping-item p {
        font-size: 13px;
    }

/* ===================================
   GALERIJA – TELEFON
=================================== */

    .gallery-section {
        padding: 60px 20px;
        scroll-margin-top: 70px;
    }

    .gallery-heading {
        margin-bottom: 30px;
    }

    .gallery-heading h2 {
        font-size: 38px;
    }

    .gallery-intro {
        font-size: 15px;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 140px 140px;
        gap: 8px;
    }

    .gallery-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-card {
        border-radius: 5px;
    }

    .gallery-show-all {
        font-size: 13px;
    }

    .lightbox-content {
        max-width: 94vw;
    }

    .lightbox-content img {
        max-width: 94vw;
        max-height: 72vh;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;

        width: 45px;
        height: 45px;

        font-size: 39px;
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;

        font-size: 23px;
    }

    .lightbox-prev {
        left: 7px;
    }

    .lightbox-next {
        right: 7px;
    }

    .location-section {
        padding: 60px 20px;
        scroll-margin-top: 70px;
    }

    .location-heading {
        margin-bottom: 30px;
    }

    .location-heading h2 {
        font-size: 38px;
    }

    .location-heading > p:last-child {
        font-size: 15px;
    }

    .location-main {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .location-info {
        padding: 28px 22px;
    }

    .location-info h3 {
        font-size: 29px;
    }

    .location-button {
        width: 100%;
        text-align: center;
    }

    .location-map {
        min-height: 340px;
        border-radius: 6px;
    }

    .location-map iframe {
        min-height: 340px;
    }

    .nearby {
        margin-top: 60px;
    }

    .location-subheading h3 {
        font-size: 32px;
    }

    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-item {
        min-height: 130px;

        border-right: 1px solid #eadfce;
        border-bottom: 1px solid #eadfce;
    }

/* Desni element v vsaki vrstici nima desne črte */
    .nearby-item:nth-child(even) {
        border-right: none;
    }

/* Zadnja dva elementa nimata spodnje črte */
    .nearby-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

/* Prekliče staro pravilo, ki je zadnjo ikono raztegnilo čez obe koloni */
    .nearby-item:last-child {
        grid-column: auto;
    }

    .activities-section {
        padding: 60px 20px;

        scroll-margin-top: 70px;
    }

    .activities-heading {
        margin-bottom: 30px;
    }

    .activities-heading h2 {
        font-size: 38px;
    }

    .activities-heading > p:last-child {
        font-size: 15px;
    }

    .activities-grid {
        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .activity-card,
    .activity-card-main {
        width: 100%;
        min-height: auto;

        padding: 28px 22px;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .activity-card-main {
        padding: 38px 22px;
    }

    .activity-icon img {
        width: 70px;
        height: 70px;

        margin-bottom: 15px;
    }

    .activity-card-main .activity-icon img {
        width: 95px;
        height: 95px;
    }

    .activity-card h3 {
        font-size: 29px;
    }

    .activity-card-main h3 {
        font-size: 35px;
    }

    .activity-button {
        width: 100%;
        max-width: 210px;
    }

/* Modal */

    .activity-modal {
        padding: 14px;
    }

    .activity-modal-window {
        max-height: 88vh;

        padding: 45px 24px 30px;
    }

    .activity-modal-icon {
        width: 75px;
        height: 75px;
    }

    .activity-modal-window h3 {
        font-size: 34px;
    }

    .activity-modal-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    .pool-tickets-badge {
        top: 12px;
        right: 12px;

        width: 112px;
        height: 112px;

        padding: 13px;
    }

    .pool-tickets-badge span {
        font-size: 8px;
    }

    .pool-tickets-badge strong {
        font-size: 17px;
    }


    .contact-section {
        padding: 60px 20px;

        scroll-margin-top: 70px;
    }

    .contact-intro {
        margin-bottom: 30px;
    }

    .contact-intro h2 {
        font-size: 38px;
    }

    .contact-intro > p:last-child {
        font-size: 14px;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
    }

    .contact-main {
        padding: 40px 25px;

        text-align: center;
        align-items: center;
    }

    .contact-main h3 {
        font-size: 33px;
    }

    .contact-main > p:not(.contact-small-title) {
        font-size: 14px;
    }

    .contact-reservation-button {
        width: 100%;

        text-align: center;
    }

    .contact-card {
        min-height: 120px;

        padding: 25px 20px;

        grid-template-columns: 35px 1fr 22px;
        gap: 12px;
    }

    .contact-card:hover {
        padding-left: 20px;
    }

    .contact-card-number {
        font-size: 20px;
    }

    .contact-card-text strong {
        font-size: 20px;
    }

    .contact-card-arrow {
        font-size: 21px;
    }


/* FOOTER */

    .footer-main {
        padding: 50px 25px 40px;

        display: flex;
        flex-direction: column;

        gap: 38px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 25px;

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
    /* POLITIKA ZASEBNOSTI */

    .privacy-header {
        min-height: 72px;

        padding: 15px 20px;
    }

    .privacy-brand img {
        width: 135px;
        height: 48px;
    }

    .privacy-back {
        font-size: 10px;
    }

    .privacy-main {
        padding: 55px 18px 70px;
    }

    .privacy-heading {
        margin-bottom: 35px;
    }

    .privacy-heading h1 {
        font-size: 40px;
    }

    .privacy-heading > p:not(.privacy-label) {
        font-size: 14px;
    }

    .privacy-content {
        padding: 0 22px;
    }

    .privacy-section {
        padding: 34px 0;

        display: block;
    }

    .privacy-number {
        display: block;

        margin-bottom: 10px;

        font-size: 19px;
    }

    .privacy-section h2 {
        font-size: 27px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }

    .privacy-contact-box {
        padding: 20px;
    }

    .privacy-footer {
        padding: 24px 20px;

        flex-direction: column;

        text-align: center;
    }

    .privacy-footer div {
        justify-content: center;
    }

    /* POVPRAŠEVANJE */

    .inquiry-header {
        min-height: 72px;

        padding: 10px 20px;
    }

    .inquiry-logo img {
        width: 135px;
        height: 50px;
    }

    .inquiry-back {
        max-width: 100px;

        font-size: 10px;
        line-height: 1.35;
        text-align: right;
    }

    .inquiry-main {
        padding: 52px 18px 65px;
    }

    .inquiry-heading {
        margin-bottom: 32px;
    }

    .inquiry-heading h1 {
        font-size: 40px;
    }

    .inquiry-heading > p:last-child {
        font-size: 14px;
    }

    .inquiry-layout {
        display: flex;
        flex-direction: column;
    }

    .inquiry-info {
        padding: 40px 25px;
    }

    .inquiry-info h2 {
        font-size: 33px;
    }

    .inquiry-form-card {
        padding: 38px 22px;
    }

    .inquiry-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .inquiry-field {
     margin-bottom: 20px;
    }

    .inquiry-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .inquiry-form-bottom p {
        max-width: 100%;
    }

    .inquiry-submit {
        width: 100%;
        min-width: 0;
    }

    .inquiry-footer {
        padding: 22px 20px;

        flex-direction: column;

        text-align: center;
    }

    .inquiry-footer div {
        justify-content: center;
        flex-wrap: wrap;

        gap: 12px 20px;
    }


}



