/* --- ZMIENNE KOLORYSTYCZNE - OŻYWIONE --- */
:root {
    --bg-base: #FFFFFF;
    --bg-alt: #F4F7FF; /* Zmiana: bardzo delikatny, chłodny błękit zamiast szarego */
    --bg-gradient: linear-gradient(135deg, #F0F4FF 0%, #FAFBFF 100%);
    --text-main: #1E2022;
    --text-light: #4A4D52;
    --accent-main: #0052FF; /* Elektryczny błękit */
    --accent-main-hover: #003ECC;
    --accent-sec: #FF007A; /* Żywy, neonowy róż/fuksja do mega kontrastu */
    --gradient-accent: linear-gradient(90deg, var(--accent-main), var(--accent-sec));
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- RESET I BAZA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- NAWIGACJA (HEADER) - NOWY WYGLĄD --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    /* Efekt szkła + wyraźne odcięcie od strony */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-accent) 1; /* Kolorowa linia na dole headera */
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.08); /* Niebieskawy cień */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* Gradientowy tekst w logo */
.logo-text span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Animowana linia pod linkami w menu */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-main);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-main);
}

/* --- SEKCJA HERO - DODANA GŁĘBIA --- */
.hero {
    padding: 180px 5% 120px;
    
    /* === MIEJSCE NA TWOJĄ GRAFIKĘ === */
    /* Zmień 'hero-bg.jpg' na nazwę swojego pliku. 
       Zastosowałem białawy gradient (overlay), który delikatnie przykryje zdjęcie. 
       Dzięki temu grafika będzie widoczna w tle, ale teksty pozostaną w 100% czytelne! */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(240, 244, 255, 0.85)), 
        url('../img/hero-bg.jpg'); 
    
    background-size: cover; /* Sprawia, że zdjęcie pokrywa całą sekcję */
    background-position: center; /* Wyśrodkowuje zdjęcie */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Opcjonalnie: tworzy świetny efekt "paralaksy" (tło stoi w miejscu podczas przewijania) */
    /* ================================ */

    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Ozdobny "kleks" (blob) w tle Hero, żeby ożywić biel */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,0,122,0.1) 0%, rgba(0,82,255,0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,82,255,0.08) 0%, rgba(0,82,255,0) 70%);
    z-index: 0;
}

.hero h1, .hero p, .hero .btn-group, .hero .social-proof {
    position: relative;
    z-index: 1; /* Tekst musi być nad ozdobnymi tłami */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 900px;
    font-weight: 800;
}

/* Tęczowy gradient na wyróżnionym słowie w H1 */
.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 45px;
    max-width: 700px;
    font-weight: 500;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; /* Zaokrąglone przyciski wyglądają nowocześniej */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-primary {
    background: var(--gradient-accent); /* Intensywny przycisk główny */
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 82, 255, 0.3);
}

.btn-secondary {
    background-color: var(--bg-base);
    color: var(--text-main);
    border: 2px solid var(--bg-alt);
}

.btn-secondary:hover {
    border-color: var(--accent-main);
    color: var(--accent-main);
    transform: translateY(-3px);
}

.social-proof {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-proof span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.social-proof span::before {
    content: "✔";
    color: var(--accent-sec);
    font-weight: 900;
}

/* --- WSPÓLNE STYLE DLA SEKCJI --- */
.section {
    padding: 100px 5%;
}

.bg-base { background-color: var(--bg-base); }
.bg-alt { background-color: var(--bg-alt); border-top: 1px solid #E8EEFF; border-bottom: 1px solid #E8EEFF; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.2rem;
}

/* --- SYSTEM SIATKI (GRID) I KARTY --- */
.grid-container {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid #F0F4FF;
    border-top: 4px solid var(--accent-main); /* Mocny kolorystyczny akcent na górze karty */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.12);
    border-top: 4px solid var(--accent-sec); /* Zmiana koloru przy najechaniu */
}

.card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* --- PORTFOLIO --- */
.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #F0F4FF;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 82, 255, 0.15);
}

.portfolio-img {
    height: 240px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-main), var(--accent-sec)); /* Intensywny placeholder zanim dodasz zdjęcia */
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .img-placeholder {
    transform: scale(1.08) rotate(2deg);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.tags {
    margin-bottom: 18px;
    font-size: 0.85rem;
}

.tag {
    background: var(--bg-alt);
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 8px;
    color: var(--accent-main);
    font-weight: 700;
}

/* --- PROCES WSPÓŁPRACY --- */
.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent); /* Tęczowe numery kroków */
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 15px 25px rgba(255, 0, 122, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-number {
    transform: scale(1.15) translateY(-10px);
}

/* --- OPINIE --- */
.review-card {
    border-top: none; /* Reset dla opinii */
    border-left: 5px solid var(--accent-sec);
}
.review-card:hover {
    border-left: 5px solid var(--accent-main);
    border-top: none;
}

.review-card .stars {
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

.review-card h4 {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--accent-main);
    font-weight: 800;
}

/* --- SEO LOKALNE --- */
.seo-section {
    text-align: center;
}

.seo-section h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.cities-list {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 2.2;
    margin-bottom: 25px;
}

.cities-list span {
    display: inline-block;
    padding: 0 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.cities-list span:hover {
    color: var(--accent-sec);
    transform: scale(1.1);
}

/* --- CTA KOŃCOWE --- */
.cta-section {
    background: var(--gradient-accent); /* Cała sekcja w intensywnym gradiencie */
    color: #fff;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-secondary {
    border-color: rgba(255,255,255,0.5);
}
.cta-section .btn-secondary:hover {
    background: #fff;
    color: var(--accent-main);
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--accent-sec);
}
.cta-section .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- RWD: PONIŻEJ 768px --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 75px; /* Wysokość headera */
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active { left: 0; }
    .hero h1 { font-size: 2.3rem; }
    .section-title { font-size: 2rem; }
    .cta-section h2 { font-size: 2.2rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
}

/* --- STOPKA (FOOTER) --- */
.site-footer {
    background-color: #0B1121; /* Bardzo ciemny granat, prawie czarny */
    color: #A0AEC0; /* Jasnoszary tekst */
    padding: 80px 5% 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Pierwsza kolumna szersza */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Delikatna linia oddzielająca copyright */
}

/* Wymuszenie białego tekstu w logo na ciemnym tle stopki */
.footer-logo .logo-text {
    color: #FFFFFF; 
}

.footer-col h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-desc {
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact strong {
    color: #FFFFFF;
}

.footer-contact a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-sec); /* Różowy po najechaniu */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--accent-main); /* Błękitny po najechaniu */
    transform: translateX(5px); /* Delikatne przesunięcie w prawo */
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Okrągłe przyciski social mediów */
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 122, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #718096;
}

/* --- RWD dla STOPKI --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Na tabletach 2 kolumny */
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; /* Na telefonach 1 kolumna */
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col ul a:hover {
        transform: none; /* Wyłączamy przesunięcie na telefonach (utrudnia klikanie) */
    }
}

/* --- HERO OFERTY (Mniejsze Hero dla podstron) --- */
.offer-hero {
    min-height: 60vh;
    padding-top: 150px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* --- DEDYKOWANE TŁA DLA PODSTRON --- */
.bg-oferta {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.80), rgba(240, 244, 255, 0.85)),
        url('../img/oferta.jpg'); 
}

.bg-omnie {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.80), rgba(240, 244, 255, 0.85)),
        url('../img/o-mnie.jpg'); 
}

.bg-portfolio {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.80), rgba(240, 244, 255, 0.85)),
        url('../img/portfolio.jpg'); 
}



/* --- TABELE CENOWE (PRICING) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E8EEFF;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.1);
}

/* Wyróżniona karta (Abonament) */
.pricing-card.highlighted {
    border: 2px solid var(--accent-main);
    box-shadow: 0 15px 35px rgba(0, 82, 255, 0.15);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 0, 122, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E8EEFF;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    margin-top: 15px;
}

.pricing-header .price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* RWD dla cennika */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- STRONA PORTFOLIO (Siatka 3x3) --- */
.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Sztywno 3 kolumny na desktopie */
    gap: 30px;
}

/* RWD dla siatki Portfolio */
@media (max-width: 992px) {
    .portfolio-page-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 768px) {
    .portfolio-page-grid {
        grid-template-columns: 1fr; /* 1 kolumna na smartfonach */
    }
}

.seo-text-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* --- STRONA O MNIE --- */
.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-main);
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 450px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.15);
}

/* RWD dla sekcji O mnie */
@media (max-width: 992px) {
    .about-split {
        flex-direction: column-reverse; /* Na mniejszych ekranach zdjęcie nad tekstem */
        gap: 40px;
    }
}

/* --- SIATKA 3 KOLUMNOWA (O MNIE) --- */
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Sztywno 3 kolumny na dużych ekranach */
    gap: 30px;
}

/* RWD dla siatki 3-kolumnowej */
@media (max-width: 992px) {
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr); /* Na tabletach 2 kolumny (będzie 3 rzędy po 2 kafelki) */
    }
}

@media (max-width: 768px) {
    .grid-3-cols {
        grid-template-columns: 1fr; /* Na telefonach 1 kolumna (wszystko jedno pod drugim) */
    }
}

/* --- DEDYKOWANE TŁO DLA KONTAKTU --- */
.bg-kontakt {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.80), rgba(240, 244, 255, 0.85)),
        url('../img/contact.jpg'); 
}

/* --- SEKCJA KONTAKTOWA --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-details a {
    color: var(--accent-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-sec);
}

.seo-text-box {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-main);
}

.seo-text-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.seo-text-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

/* --- FORMULARZ --- */
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.08);
    border: 1px solid #E8EEFF;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E8EEFF;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    background-color: #FAFBFF;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-main);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
}

/* RWD dla Kontaktu */
@media (max-width: 992px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .form-card {
        padding: 25px;
    }
}

/* --- ZDJĘCIA W KARTACH PORTFOLIO --- */
.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* KLUCZOWE: sprawia, że zdjęcie przycina się jak tło, nie zniekształcając proporcji */
    display: block;
    transition: transform 0.6s ease; /* Płynność animacji */
}

/* Przeniesienie efektu hover z placeholdera na nowe zdjęcie */
.portfolio-card:hover .portfolio-thumbnail {
    transform: scale(1.08) rotate(2deg); /* Delikatne powiększenie i obrót przy najechaniu */
}

/* --- DEDYKOWANE TŁA DLA KART PORTFOLIO NA HOME --- */

/* Wspólne ustawienie dla wszystkich zdjęć w kartach (object-fit) */
.portfolio-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease; /* Płynność dla efektu najechania */
}

/* Nadpisujemy techniczny placeholder zdjęciami z folderu img */
.home-portfolio-1 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), /* Delikatny overlay, by uatrakcyjnić zdjęcie */
        url('../img/budowlanka-thumb.png');
    background-color: none; /* Usuwamy kolor bazowy */
}

.home-portfolio-2 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('../img/fryzjer-thumb.png');
    background-color: none;
}

.home-portfolio-3 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('../img/prawnik-thumb.png');
    background-color: none;
}

/* --- ZDJĘCIE PROFILOWE (O MNIE) --- */
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gwarantuje zachowanie proporcji zdjęcia */
    border-radius: 20px; /* Zaokrąglone rogi pasujące do kontenera */
    display: block;
}