/* ========================
   Website & Reset
======================== */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ========================
   Background
======================== */
body {
    background-image: url('../../Attachments/Images/IMG/IMG-Background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #fdfbf9; /* Fallback w razie dłuższego ładowania zdjęcia */
}

/* ========================
   Scrollbar
======================== */
::-webkit-scrollbar {
    width: 10px;
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #a68b6d;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #8e755a;
    }

/* ========================
   Images & Global
======================== */
img {
    max-width: 100%;
    height: auto;
}

section {
    padding-top: 5%;
    padding-bottom: 5%;
    position: relative;
}

.text-gold {
    color: #a68b6d !important;
}

/* ========================
   Cards (Services)
======================== */
.service-card {
    border-radius: 25px !important;
    border: 1px solid #f1ece6 !important;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

    .service-card h4 {
        font-size: 1.25rem;
        font-weight: 500;
    }

    .service-card ul {
        margin-top: 15px;
    }

        .service-card ul li {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 8px;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
        }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(166, 139, 109, 0.15) !important;
    }


/* Kontener dla paska opinii */
.reviews-ticker {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* Ścieżka, która się przesuwa */
.reviews-track {
    display: flex;
    width: calc(350px * 8); /* Szerokość karty * liczba kart (wliczając klony) */
    animation: scroll 40s linear infinite;
}

    .reviews-track:hover {
        animation-play-state: paused; /* Zatrzymuje po najechaniu myszką */
    }

/* Styl pojedynczej karty */
.review-glass-card {
    flex: 0 0 350px; /* Stała szerokość karty */
    margin: 0 15px;
    padding: 30px;
    background: #f8f9fa; /* Bardziej przezroczyste */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    text-align: left;
}

/* Animacja przesunięcia */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 4));
    }
    /* Przesunięcie o połowę zestawu kart */
}

/* Różne tempo dla urządzeń mobilnych */
@media (max-width: 768px) {
    .review-glass-card {
        flex: 0 0 280px;
    }

    .reviews-track {
        width: calc(280px * 8);
    }
}

/* ========================
   Contact Box & Form
======================== */
.contact-card-box {
    background: #f8f9fa;
    border-radius: 35px;
    border: 1px solid #f1ece6;
}

.custom-input {
    border: 1px solid #eee !important;
    background-color: #fafafa !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    transition: 0.3s ease;
}

    .custom-input:focus {
        border-color: #d1bfa7 !important;
        background-color: #fff !important;
        box-shadow: 0 0 10px rgba(209, 191, 167, 0.2) !important;
        outline: none;
    }

/* Buttons */
.btn-gold {
    background-color: #a68b6d;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

    .btn-gold:hover {
        background-color: #8e755a;
        color: white;
        box-shadow: 0 8px 20px rgba(142, 117, 90, 0.3);
        transform: translateY(-2px);
    }
/* Cookie-banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #f8f9fa;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cookie-banner.hidden {
        display: none;
    }

