body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: #810000;*/
}

.urgency-header {
    background-color: #ffb62b;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.urgency-btn {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    height: 22px;
    line-height: 1;
    padding-inline: 8px;
    background-color: #303233;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
}

/* Optional: make nav links slightly brighter on hover */
.nav-link.text-white:hover {
    color: #ffb62b !important;
}

.hero-box {
    background-image: url('../img/dom/dron/main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
}

.logo-img {
    height: 90px;
    width: auto;
    margin: 0 auto;
    display: block;
}


.intro-section {
    background-color: #EEF0F2;
    font-family: 'Inter', sans-serif;
}

.intro-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.intro-subtext {
    font-size: 14px;
    font-weight: 400;
    color: #444;
}

.c-banner__rating-count {
    font-size: 14px;
    color: #333;
}

.c-banner__rating-reviews {
    font-size: 14px;
    color: #6c757d;
}

.btn-dark-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 56px;
    max-height: 56px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    line-height: normal;
    color: #fff;
    background-color: #303233;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: 0.125s linear;
    transition-property: background-color, color, border;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.btn-dark-lg:hover {
    background-color: #1f2021;
}


.about-property-section {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.section-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 0.75rem;
}

.property-characteristics {
    font-size: 14px;
}

.text-label {
    color: #6c757d;
    font-weight: 500;
}

.text-value {
    font-weight: 600;
    color: #111;
}

.blinking-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffa700;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

* {
    /*outline: 1px dashed red;*/
}

html,
body {
    overflow-x: hidden;
}

.carousel-inner,
.carousel-item {
    max-width: 100%;
    overflow: hidden;
}

.container {
    padding-right: 12px;
    padding-left: 12px;
    max-width: 1120px;
    overflow-x: hidden;
}

@media (max-width: 576px) {
    .container {
        padding-right: 8px;
        padding-left: 8px;
    }
}


/* Galeria grid — 1 kolumna na mobile, 2-4 na większych ekranach */
.gallery-photos {
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    align-items: start;
}

.gallery-photos img.gallery-item {
    width: 100%;
    height: 140px;
    object-fit: cover;
    cursor: pointer;
    display: none;
    /* JS pokaże pierwsze batchy */
    transition: transform .18s ease;
}

.gallery-photos img.gallery-item:active,
.gallery-photos img.gallery-item:hover {
    transform: scale(1.02);
}

/* przycisk centrowany */
#galleryToggleBtn {
    min-width: 160px;
}

.navbar > .container-fluid {
    justify-content: center;
}

.container p {
    max-width: 800px;
    margin: 12px auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

/* TYLKO pozycjonowanie — nie zmienia istniejących kolorów/paddingów/fontów */
.urgency-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    /* zachowujemy wszystkie Twoje dotychczasowe style (kolor, padding itp.) */
    /* dodajemy tylko płynne przejście, nie wpływające na styl: */
    transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Klasa pomocnicza aby schować pasek (opcjonalne użycie w JS) */
.urgency-header--hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}


.mt_hero {
    margin-top: 34px;
}

/* Globalnie dla całego dokumentu */
body {
    font-family: 'Inter', sans-serif;
}

/* Lub tylko dla sekcji #offer */
#offer {
    font-family: 'Inter', sans-serif;
}

.btn-dark, .btn-dark-outline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-dark:hover {
    background-color: #333;
}

.btn-dark-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-dark-outline:hover {
    background-color: #1a1a1a;
    color: #fff;
}

