/* --- TWOJE NAGŁÓWKI (ZACHOWANE) --- */
h1, h2, h3 {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 6rem) !important;
    line-height: 0.9 !important;
}

:root {
    --black: #080808;
    --silver: #C0C0C0;
    --border: rgba(192, 192, 192, 0.1);
}

/* --- GLOBALNE --- */
* { margin: 0; padding: 0; box-sizing: border-box !important; -webkit-tap-highlight-color: transparent; }
html, body { 
    background: var(--black); 
    color: white; 
    overflow-x: hidden; /* Gwarancja braku przewijania na boki */
    width: 100%; 
    font-family: 'Inter', sans-serif; 
}

/* --- CURSOR (ZACHOWANE) --- */
.cursor, .cursor-follower { position: fixed; pointer-events: none; z-index: 10000; border-radius: 50%; }
.cursor { width: 8px; height: 8px; background: white; }
.cursor-follower { width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.2); }

/* --- NAVBAR (Idealny na komputerze) --- */
.navbar { 
    position: fixed; top: 0; width: 100%; 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    padding: 20px 5%; 
    z-index: 1000; 
    backdrop-filter: blur(15px); 
    background: rgba(8,8,8,0.8); 
    border-bottom: 1px solid var(--border); 
}

.logo { 
    display: flex !important; 
    gap: 1px; 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    font-size: clamp(0.7rem, 3.5vw, 1.1rem); 
    letter-spacing: 1px; 
    cursor: pointer; 
    text-transform: uppercase; 
    white-space: nowrap !important;
    flex-shrink: 0;
}
.logo span { display: inline-block; color: white; white-space: pre; }

.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 30px !important;
    margin: 0;
    padding: 0;
}

.nav-links li { list-style: none !important; }

.nav-links a {
    color: white !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: 0.4s;
}
.nav-links a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu { 
    position: absolute; top: 100%; left: 0; background: #111; border: 1px solid var(--border); 
    padding: 15px; min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; 
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 8px 0; color: #888; font-size: 0.65rem; }
.dropdown-menu a:hover { color: white; }

/* --- HERO --- */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 5%; }
.hero h1 { 
    font-family: 'Syne', sans-serif; 
    font-size: clamp(2.5rem, 11vw, 10rem); 
    line-height: 0.8; 
    font-weight: 800; 
}
.hero h1 span.outline { -webkit-text-stroke: 1px white; color: transparent; }
.hero-sub { font-size: clamp(0.7rem, 2vw, 1rem); letter-spacing: 6px; color: #888; margin-top: 30px; text-transform: uppercase; }

/* --- CENNIK --- */
.section { padding: 120px 5%; width: 100%; }
.section-title { margin-bottom: 80px; text-align: left; text-transform: uppercase; font-family: 'Syne', sans-serif; line-height: 1; }
.section-title span { -webkit-text-stroke: 1px #444; color: transparent; }
.category-label { font-family: 'Syne', sans-serif; font-size: 1.2rem; margin: 40px 0 20px 0; color: #666; text-transform: uppercase; letter-spacing: 3px; }

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; margin-bottom: 60px; 
}
.price-card { background: #111; border: 1px solid var(--border); transition: 0.5s; position: relative; overflow: hidden; }
.price-card:hover { border-color: white; transform: translateY(-10px); }
.card-inner { padding: 40px; }
.price-card h3 { font-size: 1.8rem; margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.price-card .price { font-size: 1.3rem; color: var(--silver); font-weight: bold; margin-bottom: 25px; display: block; }
.price-card .desc { font-size: 0.85rem; color: #777; line-height: 1.6; }

/* --- REALIZACJE --- */
.realizacje-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.portfolio-container { display: flex; gap: 40px; width: max-content; padding: 0 5%; }
.portfolio-item { width: clamp(280px, 50vw, 550px); flex-shrink: 0; }
.portfolio-item img { width: 100%; height: 400px; object-fit: cover; border: 1px solid var(--border); filter: grayscale(1); transition: 0.6s; }
.portfolio-item:hover img { filter: grayscale(0); border-color: white; }
.item-desc { margin-top: 15px; font-size: 0.75rem; letter-spacing: 2px; color: #555; text-transform: uppercase; }

/* --- KONTAKT --- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.dark-form input, .dark-form textarea { width: 100%; background: #0f0f0f; border: 1px solid var(--border); padding: 18px; color: white; margin-bottom: 15px; font-family: inherit; }
.btn-silver { background: white; color: black; padding: 18px 40px; text-transform: uppercase; font-weight: bold; cursor: pointer; border: none; letter-spacing: 2px; }
#map { width: 100%; min-height: 450px; border: 1px solid var(--border); filter: grayscale(1) invert(0.92); }

/* --- MENU MOBILNE --- */
.full-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #080808; z-index: 2000; display: none; flex-direction: column; justify-content: center; align-items: center; opacity: 0; }
.full-menu.active { display: flex; opacity: 1; }
.full-menu-links a { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 8vw, 3rem); color: white !important; text-decoration: none !important; margin: 15px 0; display: block; text-transform: uppercase; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: white; cursor: pointer; }

.menu-toggle { display: none; flex-direction: column; gap: 8px; cursor: pointer; }
.menu-toggle span { width: 35px; height: 1px; background: white; }

/* --- POPRAWKI MOBILNE (TYLKO SKALOWANIE NAPISÓW) --- */
@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .menu-toggle { display: flex !important; }
    .cursor, .cursor-follower { display: none !important; }
    
    /* Zmniejszenie logo na mobile, żeby nie wypychało hamburgera */
    .logo { 
        font-size: 0.8rem !important; 
        max-width: 70%;
    }

    /* Napisy Hero - teraz zmieszczą się na każdym telefonie */
    .hero h1 { 
        font-size: clamp(2rem, 9vw, 3.5rem) !important; 
    }
    
    .hero-sub {
        letter-spacing: 3px;
        font-size: 0.6rem;
    }

    .kontakt-grid { grid-template-columns: 1fr; }
    
    .portfolio-container { 
        width: 100% !important; 
        flex-direction: column !important; 
        padding: 0 5% !important; 
        gap: 20px;
    }
    .portfolio-item { width: 100% !important; }
    .portfolio-item img { height: 250px !important; }
    .realizacje-pin { height: auto !important; padding: 60px 0; }
    
    /* Tytuły sekcji na mobile */
    .section-title { 
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important; 
        text-align: center; 
    }
}

/* --- STOPKA (ZACHOWANA) --- */
.footer {
    padding: 100px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
}

.footer p {
    margin-top: 20px !important;
    font-size: 0.7rem !important;
    color: #555 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}