@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Great+Vibes&display=swap');

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}

:root {
    --bg-color: #EBE6DF; /* Kolor tła z PDF */
    --text-color: #332B25; /* Ciemny brąz */
    --card-bg: #F4EFE9; /* Delikatnie jaśniejszy beż dla kart opinii */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

/* Typografia nagłówków */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color) !important;
}

/* Ozdobny napis (imitacja pisma odręcznego) */
.cursive-text {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Tytuł główny w nagłówku */
.brand-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

/* Nawigacja (Menu) */
.custom-nav {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-nav a {
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
.custom-nav a:hover {
    color: #8c735d;
}

/* Tymczasowe Logo "MR" */
.logo-circle {
    width: 130px;
    height: 130px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: var(--text-color);
}

/* Eleganckie Przyciski */
.btn-elegant {
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
    padding: 10px 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-elegant:hover {
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none !important;
}

/* Karty opinii */
.uk-card-default {
    background-color: var(--card-bg);
    color: var(--text-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Strzałki w sliderze */
.uk-slidenav {
    color: var(--text-color) !important;
}

/* Stylowanie linków w menu mobilnym Offcanvas */
.custom-nav-mobile a {
    color: var(--text-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.foto {
    border-radius: 12px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    width: 100%; 
    height: auto; 
    object-fit: cover;
}

/* Animacja listy z serduszkami (strona Misja) */
.mission-list li {
    transition: transform 0.3s ease;
    cursor: default; /* Pokazuje zwykły kursor, bo to nie jest link */
}

/* Lekkie, eleganckie przesunięcie tekstu w prawo po najechaniu */
.mission-list li:hover {
    transform: translateX(8px);
}

/* Płynne wypełnianie ikony */
.mission-list li .heart-icon svg path {
    transition: fill 0.3s ease;
}

/* Wypełnienie obrysu na pełne serce po najechaniu na wiersz (li) */
.mission-list li:hover .heart-icon svg path {
    fill: #79604C; 
}

.custom-nav-mobile a:hover {
    color: #8c735d !important;
}

/* Responsywność dla urządzeń mobilnych (telefony i tablety pionowo) */
@media (max-width: 959px) {
    .logo-circle {
        width: 80px;      /* Zmniejszamy koło logo */
        height: 80px;
        font-size: 2.5rem; /* Zmniejszamy litery w logo */
    }
    .brand-title {
        font-size: 1.1rem; /* Mniejszy tytuł, żeby się zmieścił */
        line-height: 1.3;
        margin-top: 5px;
    }
}

/* Elegancki efekt hover dla kart oferty */
.offer-card {
    background-color: var(--card-bg);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden; /* Zatrzymuje powiększające się zdjęcie wewnątrz karty */
}

/* Uniesienie karty i mocniejszy cień po najechaniu */
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Płynne powiększanie zdjęcia wewnątrz karty (efekt premium) */
.offer-card img {
    transition: transform 0.6s ease;
}

.offer-card:hover img {
    transform: scale(1.04);
}




