/* Base typography */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Layout */
body {
    margin-bottom: 60px;
}

/* Brand colors (tweak later to match logo exactly) */
:root {
    --brand-primary: #0b78c6; /* main blue */
    --brand-accent: #00a6e8; /* cyan */
}

/* Focus styles (accessible) */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    /* keeps default “double ring” style but uses bootstrap primary tone */
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.35);
}

/* Hero background */
.hero-surface {
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-dynamic {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-info-badge {
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 0.5rem 0.6rem;
    border-radius: 1.3rem;
    background: linear-gradient(135deg, rgba(11, 120, 198, 0.96), rgba(0, 166, 232, 0.96));
    color: #fff;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.25;
    box-shadow: 0 16px 36px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .hero-info-badge i {
        font-size: 1.35rem;
        flex-shrink: 0;
        margin-right: .8rem;
    }

@media (min-width: 992px) {
    .hero-info-stack {
        padding-left: .5rem;
    }

    .hero-info-badge {
        min-height: 70px;
        font-size: 1.1rem;
        padding: 1.1rem 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-info-stack {
        margin-top: .75rem;
    }

    .hero-info-badge {
        min-height: auto;
        font-size: 1.08rem;
    }
}

.vehicle-img {
    filter: saturate(1.02);
}

/* Soft badge (brand accent) */
.badge-soft {
    background: rgba(0, 166, 232, 0.10);
    color: var(--brand-primary);
    border: 1px solid rgba(0, 166, 232, 0.22);
}

/* Vehicle card highlight (brand touch) */
.card-vehicle {
    border-top: 3px solid rgba(0, 166, 232, 0.35);
}

    .card-vehicle:hover {
        border-top-color: rgba(0, 166, 232, 0.8);
        transform: translateY(-2px);
        transition: transform 0.15s ease-in-out, border-top-color 0.15s ease-in-out;
    }

.vehicle-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1f2328; /* tamni fallback */
}

    .vehicle-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vehicle-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem;
    background: #111;
}

    .vehicle-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--img);
        background-size: cover;
        background-position: center;
        filter: blur(18px);
        transform: scale(1.15);
        opacity: .55;
    }

    .vehicle-photo img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain; /* ključ */
    }

/* ==========================================================
   PUBLIC WEB polish: background photo + overlay + soft cards
   Image path: wwwroot/img/webpozadina.png  ->  url('/img/webpozadina.png')
   ========================================================== */

/* Background photo on whole site */
body {
    background-image: url('/img/webpozadina.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* mobile safe */
}

@media (min-width: 992px) {
    body {
        background-attachment: fixed;
    }
    /* desktop parallax */
}

/* Readable text panels over photo background */
.text-panel {
    background: rgba(0, 0, 0, 0.45); /* tamni glass */
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

    /* Malo zraka između ikone i teksta */
    .text-panel i {
        font-size: 1.8rem;
        margin-bottom: .5rem;
        display: inline-block;
        color: #4da3ff;
    }

    .text-panel h3 {
        margin-top: .25rem;
        margin-bottom: .5rem;
    }

    .text-panel p {
        margin-bottom: 0;
        opacity: 0.9;
    }
.filter-panel {
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8mm;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

    .filter-panel .form-label {
        color: rgba(255,255,255,.85);
    }

    .filter-panel .form-control,
    .filter-panel .form-select {
        background: rgba(255,255,255,.92);
        border-radius: 6px;
    }
.reservation-panel {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8mm;
}

    .reservation-panel h2,
    .reservation-panel h3,
    .reservation-panel h4 {
        color: #222;
    }

    .reservation-panel .text-muted {
        color: #6c757d !important;
    }

    .reservation-panel .price-total {
        font-size: 1.6rem;
        font-weight: 600;
    }
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.92) !important;
}
body {
    padding-top: 75px;
}
.sticky-booking {
    position: sticky;
    top: 90px;
}
.gallery-thumb {
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: transform .15s ease, border-color .15s ease, opacity .15s ease;
    opacity: .92;
}

    .gallery-thumb:hover {
        transform: translateY(-2px);
        border-color: rgba(13, 110, 253, 0.35);
        opacity: 1;
    }

.gallery-thumb-btn {
    line-height: 0;
}
.price-badge,
.total-price-badge {
    position: absolute;
    display: inline-block;
    color: #fff;
    padding: .45rem .75rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    width: auto;
    height: auto;
    z-index: 3;
}

.price-badge {
    top: 12px;
    left: 12px;
    background: rgba(17, 25, 40, 0.78);
}

.total-price-badge {
    bottom: 12px;
    left: 12px;
    background: rgba(13, 110, 253, 0.88);
}

.price-badge-label {
    font-size: .72rem;
    opacity: .8;
}

.price-badge-value {
    font-size: 1.05rem;
    font-weight: 700;
}

.price-badge-unit {
    font-size: .72rem;
    opacity: .85;
}


.vehicle-back-btn {
    position: absolute;
    top: 17px;
    left: 17px;
    right: auto; /* ovo rješava problem */

    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    color: #222;
    font-size: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
    z-index: 5;
}

    .vehicle-back-btn:hover {
        background: white;
        transform: scale(1.08);
    }
.site-footer {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.footer-panel {
    background: rgba(17, 24, 39, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.footer-company {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: .98rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

    .footer-contact-item i,
    .footer-meta i {
        color: rgba(255, 255, 255, 0.72);
        margin-top: .15rem;
        min-width: 16px;
    }

.footer-link-clean {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

    .footer-link-clean:hover {
        color: #dbeafe;
        text-decoration: none;
    }

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    transition: all .15s ease-in-out;
}

    .footer-nav-link:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateX(4px);
    }

.footer-divider {
    margin: 1.75rem 0 1rem 0;
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.88);
    font-size: .95rem;
}

.footer-bottom-muted {
    color: rgba(255, 255, 255, 0.68);
}
.impressum-card {
    background: rgba(17, 24, 39, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.impressum-card-title {
    font-size: 1.9rem;
    font-weight: 300;
    margin-bottom: 1.75rem;
    color: #ffffff;
}

.impressum-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem 1.5rem;
}

.impressum-label {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    font-size: 1.05rem;
}

.impressum-value {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
}

.impressum-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impressum-person-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.impressum-person-meta {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.6;
}

.impressum-link {
    color: #ffffff;
    text-decoration: none;
}

    .impressum-link:hover {
        color: #dbeafe;
        text-decoration: none;
    }

.impressum-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: .4rem 0;
    }

    .impressum-label {
        margin-top: .8rem;
    }
}