/* ════════════════════════════════════════════════════
   Ivop Živogošće — glavni stylesheet
   ════════════════════════════════════════════════════

   Sadržaj:
   1.  Tokens & base
   2.  Navbar
   3.  Hero
   4.  Search bar
   5.  Section helpers
   6.  About
   7.  Apartments (cards)
   8.  Stats
   9.  Reviews (static)
   10. Location / map
   11. Contact
   12. Apartment hero (single page)
   13. Gallery & lightbox
   14. Content blocks (amenities, prices, booking)
   15. Availability calendar (HB plugin)
   16. WP Customer Reviews (wpcr3)
   17. Dropdown menu
   18. News & Deals
   19. CTA strip & footer
   20. Responsive & reduced motion
   ════════════════════════════════════════════════════ */


/* ── 1. Tokens & base ───────────────────────────────── */
:root {
    --c-navy:    #0B1F3A;
    --c-teal:    #2ABFBF;
    --c-gold:    #C8A96E;
    --c-sand:    #F0E9DC;
    --c-white:   #FFFFFF;
    --c-muted:   #6B7A8D;
    --f-display: 'Playfair Display', Georgia, serif;
    --f-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    color: var(--c-navy);
    background: var(--c-white);
    overflow-x: hidden;
}


/* ── 2. Navbar ──────────────────────────────────────── */
.ivop-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background .35s, padding .35s, box-shadow .35s;
}

body:not(.home) .ivop-nav {
    background: var(--c-navy);
}

.ivop-nav.scrolled {
    background: var(--c-navy);
    padding: .75rem 0;
    box-shadow: 0 2px 20px rgba(11,31,58,.25);
}

.ivop-nav .navbar-brand {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-white) !important;
    letter-spacing: .04em;
}

.ivop-nav .navbar-brand span { color: var(--c-teal); }

.ivop-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem .8rem !important;
    transition: color .2s;
}

.ivop-nav .nav-link:hover { color: var(--c-teal) !important; }

.ivop-nav .nav-cta {
    background: var(--c-teal);
    color: var(--c-white) !important;
    border-radius: 2px;
    padding: .45rem 1.1rem !important;
}

.ivop-nav .nav-cta:hover { background: #1fa8a8; }


/* ── 3. Hero ────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(to bottom, rgba(11,31,58,.55) 0%, rgba(11,31,58,.3) 50%, rgba(11,31,58,.7) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 8rem;
    background-position: center center;
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.hero-eyebrow {
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c-teal);
    font-weight: 600;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--c-gold);
}

.hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    font-weight: 300;
    max-width: 42ch;
    line-height: 1.7;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}


/* ── 4. Search bar ──────────────────────────────────── */
.search-bar-wrap {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
}

.search-bar {
    background: var(--c-white);
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(11,31,58,.18);
    padding: 1.75rem 2rem;
}

.search-bar label {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-muted);
    margin-bottom: .35rem;
    display: block;
}

.search-bar .form-control,
.search-bar .form-select,
.hbook-wrapper input[type="text"],
select#hb-form-1-adults,
.hb-children {
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    padding: .5rem 0;
    font-family: var(--f-body);
    font-size: .95rem;
    color: var(--c-navy);
    background: transparent;
    box-shadow: none;
}

.search-bar .form-control:focus,
.search-bar .form-select:focus {
    border-bottom-color: var(--c-teal);
    box-shadow: none;
}

.btn-search,
.hb-search-button-wrapper input {
    background: var(--c-navy);
    color: var(--c-white);
    border: none;
    border-radius: 3px;
    padding: .85rem 2rem;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    transition: background .2s;
}

.btn-search:hover,
.hb-search-button-wrapper input:hover { background: var(--c-teal); }
.hb-booking-search-form h3{
    display:none;
}

/* ── 5. Section helpers ─────────────────────────────── */
section { padding: 4rem 0; }

section.banner-section {
    margin-top: 104px;
    height: 30vh;
}

.section-eyebrow {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
    margin-bottom: .5rem;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.15;
}

.divider {
    width: 2.5rem;
    height: 2px;
    background: var(--c-teal);
    margin: .75rem 0 1.5rem;
}

.block-label {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
    margin-bottom: .6rem;
}

.block-title {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 1rem;
}


/* ── 6. About ───────────────────────────────────────── */
.about-section { background: var(--c-sand); }

.about-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #3a4a5c;
    font-weight: 300;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c-white);
    border-radius: 100px;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-navy);
    box-shadow: 0 2px 8px rgba(11,31,58,.08);
}

.feature-pill i { color: var(--c-teal); }


/* ── 7. Apartments (cards) ──────────────────────────── */
.apt-card {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11,31,58,.08);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}

.apt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11,31,58,.15);
}

.apt-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.apt-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.apt-card:hover .apt-card-img-wrap img { transform: scale(1.06); }

a.hb-thumbnail-link {
    border: none;
    display: block;
    width: 100%;
    height: 100%;
}

.apt-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--c-navy);
    color: var(--c-white);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 2px;
}

.apt-price {
    position: absolute;
    top: 10rem; left: 1rem;
    background: var(--c-teal);
    color: var(--c-white);
    font-size: .85rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 2px;
}

.apt-card-body { padding: 1.5rem; }

.apt-card-title,
.apt-card-title a {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: .75rem;
    text-decoration: none;
}

.apt-card-text {
    font-size: .875rem;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.apt-amenity {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    color: var(--c-muted);
    margin-right: .75rem;
    margin-bottom: .4rem;
}

.apt-amenity i { color: var(--c-teal); font-size: .85rem; }

.btn-apt {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-navy);
    text-decoration: none;
    border-bottom: 2px solid var(--c-teal);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
    width: fit-content;
}

.btn-apt:hover { color: var(--c-teal); }
.btn-apt--sm   { font-size: .72rem; }


/* ── 8. Stats ───────────────────────────────────────── */
.stats-section {
    background: var(--c-navy);
    padding: 4rem 0;
}

.stat-num {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--c-teal);
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    margin-top: .5rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
}


/* ── 9. Reviews (static cards) ──────────────────────── */
.reviews-section { background: var(--c-sand); }

.review-card {
    background: var(--c-white);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(11,31,58,.07);
    height: 100%;
    position: relative;
}

.review-card::before {
    content: '\201C';
    font-family: var(--f-display);
    font-size: 5rem;
    color: var(--c-teal);
    opacity: .2;
    position: absolute;
    top: -.5rem; left: 1.5rem;
    line-height: 1;
}

.review-text {
    font-size: .9rem;
    line-height: 1.75;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    font-size: .85rem;
    color: var(--c-navy);
}

.review-date {
    font-size: .75rem;
    color: var(--c-muted);
}

.stars { color: var(--c-gold); font-size: .85rem; letter-spacing: .05em; }


/* ── 10. Location / map ─────────────────────────────── */
.transport-icon {
    width: 52px; height: 52px;
    background: var(--c-sand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--c-teal);
    margin-bottom: .75rem;
    flex-shrink: 0;
}

.map-placeholder {
    background: #e8edf3;
    border-radius: 4px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--c-muted);
    gap: .5rem;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%; height: 100%;
    border: none;
}


/* ── 11. Contact ────────────────────────────────────── */
.contact-section { background: var(--c-navy); }
.contact-section .section-title  { color: var(--c-white); }
.contact-section .section-eyebrow { color: var(--c-teal); }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px; height: 44px;
    background: rgba(42,191,191,.15);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--c-teal);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255,255,255,.4);
    margin-bottom: .25rem;
}

.contact-info-val {
    color: var(--c-white);
    font-size: .95rem;
    font-weight: 400;
}

.contact-info-val a { color: inherit; text-decoration: none; }
.contact-info-val a:hover { color: var(--c-teal); }

.btn-book {
    background: var(--c-teal);
    color: var(--c-white);
    border: none;
    border-radius: 3px;
    padding: 1rem 2.5rem;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
}

.btn-book:hover {
    background: #1fa8a8;
    color: var(--c-white);
    transform: translateY(-1px);
}


/* ── 12. Apartment hero (single page) ───────────────── */
.apt-hero {
    background: var(--c-sand);
    padding-bottom: 2.5rem;
    margin-top: 105px;
}

.apt-eyebrow {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
}

.apt-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.1;
}

.apt-price-tag {
    display: inline-block;
    background: var(--c-teal);
    color: var(--c-white);
    font-size: .85rem;
    font-weight: 600;
    padding: .45rem 1.1rem;
    border-radius: 2px;
    letter-spacing: .05em;
}

.apt-capacity {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--c-muted);
}

.apt-description {
    font-size: .95rem;
    line-height: 1.8;
    color: #3a4a5c;
    font-weight: 300;
}

.breadcrumb-item a {
    color: var(--c-teal);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
}

.breadcrumb-item.active { font-size: .8rem; color: var(--c-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--c-muted); }


/* ── 13. Gallery & lightbox ─────────────────────────── */
.gallery-section { background: var(--c-white); padding: 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 6px;
}

.gallery-grid .g-main { grid-row: 1 / 3; }

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,0);
    transition: background .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .overlay { background: rgba(11,31,58,.25); }

.overlay i {
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover .overlay i { opacity: 1; }

.gallery-more-btn {
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: rgba(11,31,58,.75);
    color: white;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 2px;
    border: none;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background .2s;
}

.gallery-more-btn:hover { background: var(--c-teal); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,19,31,.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: .6;
    padding: 1rem;
    transition: opacity .2s;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: .5rem; }
.lightbox-next { right: .5rem; }

.lightbox-counter {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    margin-top: .75rem;
    letter-spacing: .1em;
}

.lightbox-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 1rem;
    max-width: 90vw;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lightbox-thumbs img {
    height: 52px;
    width: 72px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    opacity: .5;
    transition: opacity .2s;
    flex-shrink: 0;
}

.lightbox-thumbs img.active,
.lightbox-thumbs img:hover { opacity: 1; }


/* ── 14. Content blocks ─────────────────────────────── */

/* Amenity chips */
.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--c-sand);
    border-radius: 2px;
    padding: .55rem 1rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--c-navy);
    margin: 0 .4rem .4rem 0;
}

.amenity-chip i { color: var(--c-teal); font-size: .95rem; }

/* Price table */
.hb-rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    font-family: var(--f-body);
}

.hb-rates-table thead th {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 600;
    padding: .6rem 1rem;
    border-bottom: 2px solid #e8ecf1;
    text-align: left;
}

.hb-rates-table tbody tr {
    border-bottom: 1px solid #f0f3f7;
    transition: background .15s;
}

.hb-rates-table tbody tr:hover { background: var(--c-sand); }

.hb-rates-table tbody td {
    padding: .75rem 1rem;
    color: var(--c-navy);
}

.hb-rates-table tbody td:last-child { font-weight: 600; }

.hb-rates-table tbody tr:has(td:last-child:not(:empty)) td:last-child {
    color: var(--c-teal);
}

.hb-rates-table-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e8ecf1;
}

.hb-prices h3 {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
    margin-bottom: .6rem;
    font-family: var(--f-body);
}

.hb-prices p {
    font-size: .78rem;
    color: var(--c-muted);
    margin-top: .75rem;
    line-height: 1.6;
}

.hb-prices p::before {
    content: '\2139\fe0f';
    margin-right: .4rem;
}

/* Booking sidebar */
.booking-card {
    background: var(--c-white);
    border: 1px solid #e0e8f0;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(11,31,58,.08);
    padding: 1.75rem;
    position: sticky;
    top: 5.5rem;
}

.booking-card .price-from {
    font-size: .75rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
}

.booking-card .price-main {
    font-family: var(--f-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1;
}

.booking-card .price-unit {
    font-size: .8rem;
    color: var(--c-muted);
    font-weight: 400;
}

.booking-divider {
    border: none;
    border-top: 1px solid #e8ecf1;
    margin: 1.25rem 0;
}

.booking-label {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-muted);
    margin-bottom: .3rem;
    display: block;
}

.booking-field {
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    padding: .5rem 0;
    font-family: var(--f-body);
    font-size: .9rem;
    color: var(--c-navy);
    background: transparent;
    box-shadow: none;
    width: 100%;
}

.booking-field:focus {
    outline: none;
    border-bottom-color: var(--c-teal);
}

.btn-book-now {
    background: var(--c-navy);
    color: var(--c-white);
    border: none;
    border-radius: 3px;
    padding: .9rem 1.5rem;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    transition: background .2s;
    margin-top: 1.25rem;
}

.btn-book-now:hover { background: var(--c-teal); }

.booking-note {
    font-size: .75rem;
    color: var(--c-muted);
    text-align: center;
    margin-top: .75rem;
    line-height: 1.5;
}

.booking-contact-alt {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--c-navy);
    text-decoration: none;
    font-weight: 500;
    padding: .65rem 0;
    border-top: 1px solid #e8ecf1;
    margin-top: .5rem;
    transition: color .2s;
}

.booking-contact-alt:hover { color: var(--c-teal); }
.booking-contact-alt i    { color: var(--c-teal); }

.avail-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--c-muted);
    margin-bottom: 1rem;
}

.avail-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.avail-dot.occupied { background: #ef4444; }

/* Booking form (HB plugin inside sidebar) */
.sidebar-booking h3 { display: none; }

.sidebar-booking .hb-check-dates-wrapper,
.sidebar-booking .hb-people-wrapper {
    width: 50% !important;
    display: inline-block;
    padding: .75rem 1rem;
    border: 1px solid #e0e5eb;
    border-radius: 3px;
    overflow: hidden;
}

.sidebar-booking .hbook-wrapper label {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-muted);
    margin-bottom: .3rem;
    display: block;
}

.sidebar-booking .hb-vertical-search-form:not(.hb-search-form-no-children) p.hb-people-wrapper-adults {
    margin-right: 0%;
}

/* Other apartments (sidebar list) */
.other-apt-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .85rem 0;
    border-bottom: 1px solid #e8ecf1;
    text-decoration: none;
    transition: opacity .2s;
}

.other-apt-card:last-child { border-bottom: none; }
.other-apt-card:hover      { opacity: .75; }

.other-apt-thumb {
    width: 64px; height: 48px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.other-apt-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: .15rem;
}

.other-apt-price {
    font-size: .78rem;
    color: var(--c-teal);
    font-weight: 500;
}


/* ── 15. Availability calendar (HB plugin) ──────────── */
.hb-availability-calendar-wrapper { margin-top: 1rem; }

.hb-availability-calendar {
    background: var(--c-white);
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(11,31,58,.06);
}

.hb-availability-calendar .hb-datepick-wrapper {
    box-shadow: none !important;
    border-radius: 0 !important;
}

.hb-datepick-wrapper {
    width: 100% !important;
    font-family: var(--f-body);
    position: relative;
}

.hb-dp-cmd-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.hb-dp-cmd {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c-navy);
    color: var(--c-white);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1;
    transition: background .2s;
}

.hb-dp-cmd:hover { background: var(--c-teal); }

.hb-dp-cmd.hb-dp-disabled {
    background: #e8ecf1;
    color: var(--c-muted);
    pointer-events: none;
}

.hb-dp-clearfix::after { content: ''; display: table; clear: both; }

.hb-dp-month-row { display: flex; gap: 1rem; }
.hb-dp-month     { flex: 1; min-width: 0; }

.hb-dp-month-header {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
    text-align: center;
    padding: 0 2rem .75rem;
    margin-bottom: .25rem;
}

.hb-dp-week-header {
    width: 100%;
    overflow: hidden;
    margin-bottom: 4px;
}

.hb-dp-week-header div {
    float: left;
    width: 14.2857%;
    text-align: center;
    padding: 3px 0;
}

.hb-dp-week-header span {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.hb-dp-week {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3px;
}

.hb-dp-day {
    float: left;
    width: 14.2857%;
    text-align: center;
}

.hb-dp-day span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin: 1px;
    font-size: .82rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: default;
    color: var(--c-navy);
    transition: background .15s, color .15s;
}

.hb-day-available {
    background: transparent;
    color: var(--c-navy) !important;
    cursor: pointer !important;
}

.hb-day-available:hover {
    background: var(--c-teal) !important;
    color: var(--c-white) !important;
}

.hb-day-available.hb-dp-weekend {
    background: rgba(42,191,191,.2);
    color: var(--c-navy) !important;
}

.hb-day-available.hb-dp-weekend:hover {
    background: var(--c-teal) !important;
    color: var(--c-white) !important;
}

.hb-dp-today {
    background: var(--c-teal) !important;
    color: var(--c-white) !important;
    font-weight: 700 !important;
}

.hb-day-occupied,
.hb-day-no-check-in,
.hb-day-no-check-out,
.hb-day-no-check-in-min-stay {
    background: rgba(239,68,68,.1) !important;
    color: #ef4444 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
}

.datepick-other-month {
    background: transparent !important;
    color: transparent !important;
    pointer-events: none;
}

.hb-avail-caption-wrapper {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--c-muted);
    margin-top: .75rem;
}

.hb-avail-caption-wrapper .hb-avail-caption {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 3px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    flex-shrink: 0;
}


/* ── 16. WP Customer Reviews (wpcr3) ────────────────── */
.wpcr3_reviews_holder { margin-top: 1.5rem; }

.wpcr3_item_name {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
    font-family: var(--f-body);
    margin-bottom: .4rem;
}

.wpcr3_aggregateRating {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.wpcr3_aggregateRating_overallText,
.wpcr3_aggregateRating_reviewCount { font-size: .8rem; color: var(--c-muted); }

.wpcr3_rating_style1 { display: inline-block; position: relative; }

.wpcr3_rating_style1_base {
    width: 80px; height: 14px;
    background: #e8ecf1;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.wpcr3_rating_style1_base::before {
    content: '★★★★★';
    position: absolute;
    inset: 0;
    font-size: .7rem;
    letter-spacing: 2px;
    color: #e8ecf1;
    display: flex;
    align-items: center;
}

.wpcr3_rating_style1_average {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--c-gold);
    border-radius: 2px;
}

.wpcr3_dotline {
    border: none;
    border-top: 1px solid #e8ecf1;
    margin: 1rem 0;
}

.wpcr3_review {
    background: var(--c-sand);
    border: 1px solid #e8ecf1;
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.wpcr3_review::before {
    content: '\201C';
    font-family: var(--f-display);
    font-size: 4rem;
    color: var(--c-teal);
    opacity: .15;
    position: absolute;
    top: -.25rem; left: 1.25rem;
    line-height: 1;
}

.wpcr3_review_ratingValue { display: inline-block; margin-bottom: .4rem; }

.wpcr3_review_datePublished,
.wpcr3_review_author {
    display: inline;
    font-size: .78rem;
    color: var(--c-muted);
    font-style: italic;
}

.wpcr3_caps {
    font-weight: 600;
    color: var(--c-navy);
    font-style: normal;
    text-transform: capitalize;
}

.wpcr3_content {
    border: none;
    margin: .75rem 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.wpcr3_content p {
    font-size: .88rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin: 0;
}

.wpcr3_clear { clear: both; }
.wpcr3_hide  { display: none; }


/* ── 17. Dropdown menu ──────────────────────────────── */
.dropdown-menu {
    border: none;
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(11,31,58,.15);
    padding: .5rem 0;
    margin-top: .25rem;
    background: var(--c-white);
    min-width: 200px;
}

.dropdown-menu .nav-item { list-style: none; }

.dropdown-menu .dropdown-item {
    font-family: var(--f-body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--c-navy);
    padding: .55rem 1.25rem;
    transition: background .15s, color .15s, padding .15s;
    border-left: 2px solid transparent;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: var(--c-sand);
    color: var(--c-teal);
    border-left-color: var(--c-teal);
    padding-left: 1.5rem;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .current-menu-item .dropdown-item {
    background: var(--c-sand);
    color: var(--c-teal);
    border-left-color: var(--c-teal);
    font-weight: 600;
}

.dropdown-menu .nav-item + .nav-item { border-top: 1px solid #f0f3f7; }


/* ── 18. News & Deals ───────────────────────────────── */
.page-hero {
    background: var(--c-sand);
    padding-top: 6rem;
    border-bottom: 1px solid #e8ecf1;
}

.news-section { padding: 4rem 0 5rem; }

.news-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem;
    flex-wrap: wrap;
}

.news-cat {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-white);
    background: var(--c-teal);
    padding: .2rem .65rem;
    border-radius: 2px;
}

.news-date { font-size: .75rem; color: var(--c-muted); font-weight: 400; }

.news-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(11,31,58,.1);
    text-decoration: none;
    transition: box-shadow .3s, transform .3s;
    background: var(--c-white);
    border: 1px solid #e8ecf1;
}

.news-card-featured:hover {
    box-shadow: 0 12px 48px rgba(11,31,58,.15);
    transform: translateY(-3px);
}

.news-featured-img {
    overflow: hidden;
    min-height: 320px;
}

.news-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.news-card-featured:hover .news-featured-img img { transform: scale(1.04); }

.news-featured-body {
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-title {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.2;
    margin-bottom: .85rem;
}

.news-excerpt {
    font-size: .9rem;
    line-height: 1.75;
    color: #4a5568;
    font-weight: 300;
    margin-bottom: 1.25rem;
    flex: 1;
}

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(11,31,58,.07);
    border: 1px solid #e8ecf1;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    background: var(--c-white);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(11,31,58,.13);
}

.news-card-img {
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.news-card:hover .news-card-img img { transform: scale(1.06); }

.news-card-img--placeholder {
    background: var(--c-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    font-size: 2rem;
    opacity: .4;
}

.news-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-navy);
    line-height: 1.3;
    margin-bottom: .6rem;
}

.news-card-excerpt {
    font-size: .83rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 300;
    margin-bottom: 1rem;
    flex: 1;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: .35rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 3px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-navy);
    text-decoration: none;
    border: 1px solid #e8ecf1;
    transition: background .2s, color .2s, border-color .2s;
}

.news-pagination .page-numbers:hover {
    background: var(--c-sand);
    border-color: var(--c-teal);
    color: var(--c-teal);
}

.news-pagination .page-numbers.current {
    background: var(--c-navy);
    color: var(--c-white);
    border-color: var(--c-navy);
}

.news-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}


/* ── 19. CTA strip & footer ─────────────────────────── */
.cta-strip {
    background: var(--c-navy);
    padding: 3.5rem 0;
}

.cta-strip h2 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--c-white);
    margin: 0;
}

.btn-cta-strip {
    background: var(--c-teal);
    color: var(--c-white);
    border: none;
    border-radius: 3px;
    padding: .85rem 2rem;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.btn-cta-strip:hover {
    background: #1fa8a8;
    color: var(--c-white);
    transform: translateY(-1px);
}

.site-footer {
    background: #07131f;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.site-footer p { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }

.footer-links a {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    margin-left: .5rem;
    transition: color .2s;
}

.footer-links a:hover { color: var(--c-teal); }

/* ── Contact page ───────────────────────────────────── */
.contact-page-section { padding: 4rem 0 5rem; }

/* Info items (light verzija za bijelu pozadinu) */
.contact-icon-light {
    width: 44px; height: 44px;
    background: var(--c-sand);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--c-teal);
    flex-shrink: 0;
}

.contact-info-label-dark {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--c-muted);
    margin-bottom: .25rem;
    font-weight: 600;
}

.contact-info-val-dark {
    color: var(--c-navy);
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-info-val-dark a {
    color: var(--c-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-val-dark a:hover { color: var(--c-navy); }

/* Karta */
.contact-map {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e8ecf1;
    height: 260px;
}

.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
    display: block;
}

/* Transport grid */
.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.transport-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: var(--c-sand);
    border-radius: 4px;
    padding: 1rem 1.1rem;
    border: 1px solid #e8ecf1;
    transition: border-color .2s, box-shadow .2s;
}

.transport-card:hover {
    border-color: var(--c-teal);
    box-shadow: 0 2px 12px rgba(42,191,191,.12);
}

.transport-card--full { grid-column: 1 / -1; }

.transport-card-icon {
    width: 38px; height: 38px;
    background: var(--c-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--c-teal);
    flex-shrink: 0;
}

.transport-card-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: .2rem;
}

.transport-card-desc {
    font-size: .78rem;
    color: var(--c-muted);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 575px) {
    .transport-grid { grid-template-columns: 1fr; }
    .transport-card--full { grid-column: 1; }
    .contact-map { height: 200px; }
}

/* ════════════════════════════════════════════════════
   Single post — dodaj na kraj ivop-style.css
   ════════════════════════════════════════════════════ */
 
/* ── Post hero ──────────────────────────────────────── */
.post-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    overflow: hidden;
}
 
.post-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
 
.post-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
 
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,31,58,.3) 0%,
        rgba(11,31,58,.75) 100%
    );
}
 
.post-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: 3rem;
}
 
/* Breadcrumb — light verzija na tamnoj pozadini */
.breadcrumb-light .breadcrumb-item a {
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}
 
.breadcrumb-light .breadcrumb-item a:hover { color: var(--c-teal); }
 
.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255,255,255,.45);
    font-size: inherit;
}
 
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.3);
}
 
/* Meta row */
.post-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
}
 
.post-hero-date,
.post-hero-read {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
}
 
/* Naslov */
.post-hero-title {
    font-family: var(--f-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.15;
    max-width: 780px;
    margin: 0;
}
 
/* Ako nema slike — fallback pozadina */
.post-hero:not(:has(.post-hero-img)) {
    background: var(--c-navy);
    min-height: 320px;
}
 
/* ── Post content section ───────────────────────────── */
.post-content-section { padding: 4rem 0 5rem; }
 
/* ── Post body (the_content) ────────────────────────── */
.post-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #3a4a5c;
    font-weight: 300;
}
 
.post-body p { margin-bottom: 1.4rem; }
 
.post-body h2 {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 2rem 0 .75rem;
}
 
.post-body h3 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-navy);
    margin: 1.75rem 0 .6rem;
}
 
.post-body a {
    color: var(--c-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(42,191,191,.3);
    transition: border-color .2s;
}
 
.post-body a:hover { border-bottom-color: var(--c-teal); }
 
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}
 
.post-body blockquote {
    border-left: 3px solid var(--c-teal);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: var(--c-sand);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: #4a5568;
}
 
.post-body ul,
.post-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.4rem;
}
 
.post-body li { margin-bottom: .4rem; }
 
/* ── Tags ───────────────────────────────────────────── */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf1;
    font-size: .78rem;
    color: var(--c-muted);
}
 
.post-tag {
    display: inline-block;
    background: var(--c-sand);
    color: var(--c-navy);
    font-size: .72rem;
    font-weight: 500;
    padding: .3rem .75rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
 
.post-tag:hover {
    background: var(--c-teal);
    color: var(--c-white);
}
 
/* ── Author card ────────────────────────────────────── */
.post-author-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--c-sand);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}
 
.post-author-avatar img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
 
.post-author-label {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 600;
    margin-bottom: .2rem;
}
 
.post-author-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--c-navy);
}
 
.post-author-bio {
    font-size: .8rem;
    color: var(--c-muted);
    margin-top: .25rem;
    line-height: 1.5;
}
 
/* ── Post navigation ────────────────────────────────── */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ecf1;
}
 
.post-nav-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: 1rem 1.25rem;
    background: var(--c-white);
    border: 1px solid #e8ecf1;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}
 
.post-nav-item:hover {
    border-color: var(--c-teal);
    box-shadow: 0 2px 12px rgba(42,191,191,.12);
}
 
.post-nav-next { text-align: right; }
 
.post-nav-dir {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
}
 
.post-nav-title {
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-navy);
    line-height: 1.4;
}
 
/* ── Sidebar ────────────────────────────────────────── */
.post-sidebar-back {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-navy);
    text-decoration: none;
    border-bottom: 2px solid var(--c-teal);
    padding-bottom: 2px;
    margin-bottom: 2rem;
    transition: color .2s;
}
 
.post-sidebar-back:hover { color: var(--c-teal); }
 
/* Related posts widget */
.post-sidebar-widget {
    margin-bottom: 2rem;
}
 
.post-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid #e8ecf1;
    text-decoration: none;
    transition: opacity .2s;
}
 
.post-sidebar-item:last-child { border-bottom: none; }
.post-sidebar-item:hover { opacity: .72; }
 
.post-sidebar-thumb {
    width: 64px; height: 48px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
 
.post-sidebar-thumb--placeholder {
    background: var(--c-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    font-size: 1.1rem;
}
 
.post-sidebar-item-title {
    font-size: .83rem;
    font-weight: 600;
    color: var(--c-navy);
    line-height: 1.35;
    margin-bottom: .2rem;
}
 
.post-sidebar-item-date {
    font-size: .72rem;
    color: var(--c-muted);
}
 
/* Book CTA widget */
.post-sidebar-cta {
    background: var(--c-navy);
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 2rem;
}
 
.post-sidebar-cta-eyebrow {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-teal);
    margin-bottom: .4rem;
}
 
.post-sidebar-cta-title {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.25;
    margin-bottom: .6rem;
}
 
.post-sidebar-cta-text {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin-bottom: 1.1rem;
}
 
.post-sidebar-cta .btn-book {
    font-size: .78rem;
    padding: .75rem 1rem;
}
 
.post-sidebar-cta .booking-contact-alt {
    color: rgba(255,255,255,.6);
    border-top-color: rgba(255,255,255,.1);
}
 
.post-sidebar-cta .booking-contact-alt:hover { color: var(--c-teal); }
 
/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 767px) {
    .post-hero         { min-height: 340px; }
    .post-hero-title   { font-size: 1.6rem; }
    .post-nav          { grid-template-columns: 1fr; }
    .post-content-section { padding: 2.5rem 0 4rem; }
}
/* ── 20. Responsive & reduced motion ────────────────── */
@media (max-width: 767px) {
    section          { padding: 3rem 0; }
    .search-bar      { padding: 1.5rem 1.25rem; }
    .hero            { padding-bottom: 5rem; }
    .stat-divider    { display: none; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .gallery-grid .g-main { grid-row: 1; grid-column: 1 / 3; }

    .news-card-featured  { grid-template-columns: 1fr; }
    .news-featured-img   { min-height: 220px; }
    .news-featured-body  { padding: 1.5rem; }
    .news-section        { padding: 2.5rem 0 4rem; }

    .hb-dp-month-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .hero                    { background-attachment: scroll; }
    .apt-card,
    .apt-card-img-wrap img,
    .btn-book,
    .gallery-item img,
    .news-card-img img,
    .news-featured-img img   { transition: none; }
    .hero-scroll i           { animation: none; }
}
@media(min-width:992px){
    .pt-9 {
        padding-top: 9rem !important;
    }
}
.img-svg{
    width:15px;filter: invert(35%);
}
a:hover >.img-svg{
    filter: brightness(0) saturate(100%) invert(67%) sepia(42%) saturate(1142%) hue-rotate(141deg) brightness(91%) contrast(91%);
}