:root {
    /* Kolory wyciągnięte prosto z Twojego logo */
    --va-dark: #2e1a47;      /* Ciemny fiolet z napisu */
    --va-magenta: #bb206d;   /* Środek logo */
    --va-orange: #f79c33;    /* Pomarańcz z góry litery A */
    --va-gradient: linear-gradient(135deg, #41295a 0%, #bb206d 50%, #f79c33 100%);
    --va-bg: #fdfdff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--va-bg);
    color: #333;
    margin: 0;
}

/* Nowoczesny Navbar */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(46, 26, 71, 0.1);
    padding: 0.2rem 0;
}

.nav-link {
    color: var(--va-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
}

.nav-link:hover, .nav-link.active {
    color: var(--va-magenta) !important;
}

/* Przycisk akcji z gradientem */
.btn-va {
    background: var(--va-gradient);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(187, 32, 109, 0.3);
}

.btn-va:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 32, 109, 0.5);
}

/* Galeria */
.gallery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    background: white;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 26, 71, 0.2);
}

.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Paginacja */
.pagination .page-link {
    color: var(--va-magenta);
    border: none;
    background: transparent;
}

.pagination .page-item.active .page-link {
    background: var(--va-gradient);
    border-radius: 5px;
}

/* Stopka */
footer {
    background: var(--va-dark);
    color: white;
    padding: 20px 0 20px;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--va-orange);
}

.mt-5 {
    margin-top: 1.5rem !important; /* Standardowo mt-5 to 3rem, tutaj zmniejszamy o połowę */
}


/* Stylizacja rozwijanego menu */
.dropdown-menu {
    background-color: white;
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
}

.dropdown-item {
    color: var(--va-dark);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(187, 32, 109, 0.1);
    color: var(--va-magenta);
}

.dropdown-item.active {
    background: var(--va-gradient) !important;
    color: white !important;
}

/* Animacja wysuwania menu */
@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% { transform: translateY(1rem); opacity: 0; }
    100% { transform: translateY(0rem); opacity: 1; }
}

.slideIn { animation-name: slideIn; }

.border-va {
    border-color: #bb206d !important; /* Twoja magenta z logo */
}

.alert-va-light {
    background-color: rgba(187, 32, 109, 0.05);
    border: 1px solid rgba(187, 32, 109, 0.1);
    color: #41295a;
    border-radius: 10px;
}

.animate-fade {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Przeniesione z nagłówka i stopki */
.social-header-icons img { transition: transform 0.2s; }
.social-header-icons a:hover img { transform: scale(1.1); }
.nav-link.active { color: #bb206d !important; font-weight: bold; }
.slideIn { animation-name: slideIn; animation-duration: 0.3s; }
@keyframes slideIn {
    from { transform: translateY(10%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Przeniesione z podstron (np. o-nas) */
.about-text { background: #fdfdff; border-radius: 15px; border-left: 5px solid #bb206d; }
.va-purple { color: #2e1a47; }
.text-va { color: #bb206d; }
.border-va { border-top: 4px solid #bb206d; }
.service-card {
    background: white; border-radius: 12px; transition: 0.3s;
    border: 1px solid rgba(46, 26, 71, 0.1); text-align: center;
}
.service-card:hover { border-color: #f79c33; transform: translateY(-5px); }
.alert-va-light {
    background-color: rgba(187, 32, 109, 0.05);
    border: 1px solid rgba(187, 32, 109, 0.2); color: #2e1a47;
}


    /* Poprawki CSS dla ikon i nawigacji */
    .social-header-icons img {
        transition: transform 0.2s;
    }
    .social-header-icons a:hover img {
        transform: scale(1.1);
    }
    .nav-link.active {
        color: #bb206d !important; /* Twoja magenta z logo */
        font-weight: bold;
    }
    /* Animacja rozwijanego menu */
    .slideIn {
        animation-name: slideIn;
        animation-duration: 0.3s;
    }
    @keyframes slideIn {
        from { transform: translateY(10%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
/* --- STYLE GALERII --- */

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    box-shadow: 0 10px 25px rgba(187, 32, 109, 0.25) !important;
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

/* --- PAGINACJA --- */

.pagination .page-link {
    color: #2e1a47; /* Twój ciemny fiolet */
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 6px;
    transition: all 0.3s;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #bb206d 0%, #f79c33 100%);
    border: none;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: rgba(187, 32, 109, 0.1);
    color: #bb206d;
}

/* --- POZOSTAŁE ELEMENTY --- */

.badge.bg-danger {
    background: linear-gradient(135deg, #bb206d, #8e1a53) !important;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(135deg, #41295a 0%, #bb206d 50%, #f79c33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Stylowanie Ikon (teraz są w głównym katalogu) */
    .icon-wrapper {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fdfdff;
        border: 1px solid #eee;
        border-radius: 10px;
        margin-right: 15px;
    }

    .icon-wrapper img {
        max-width: 24px;
        max-height: 24px;
        object-fit: contain;
    }

    /* Wygląd elementów kontaktu */
    .contact-item-box {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        margin-bottom: 22px;
        transition: 0.3s;
        padding: 5px;
    }

    .contact-item-box:hover {
        transform: translateX(8px);
        color: #bb206d;
    }

    .contact-item-box span {
        display: block;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .contact-item-box small {
        display: block;
        color: #888;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Poprawa pól formularza */
    .custom-input {
        border: 1px solid #e0e0e0;
        padding: 12px 16px;
        border-radius: 8px;
        background-color: #fafaff;
    }

    .custom-input:focus {
        border-color: #bb206d;
        box-shadow: 0 0 0 0.25rem rgba(187, 32, 109, 0.1);
        background-color: #fff;
    }

    .va-purple { color: #2e1a47; }
    .border-va { border-color: #bb206d !important; }

    @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(187, 32, 109, 0.4);
}

.gallery-card a {
    display: block;
    cursor: zoom-in; /* Zmiana kursora na lupkę */
}