/* ===== RESET I BAZA ===== */
:root {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --bg-card: #ffffff;
    --bg-accent: #fef3c7;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --accent-primary: #475569;
    --accent-secondary: #64748b;
    --accent-dark: #334155;
    --accent-gradient: #475569;
    --gold-accent: #d97706;
    --gold-light: #fcd34d;
    --gold-dark: #b45309;
    --steel-gray: #475569;
    --steel-light: #94a3b8;
    --steel-dark: #1e293b;
    --border-light: #e2e8f0;
    --border-card: #e2e8f0;
    --shadow-light: rgba(0,0,0,0.04);
    --shadow-card: rgba(0,0,0,0.08);
    --shadow-accent: rgba(71, 85, 105, 0.15);
}

.dark-mode {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-accent: #451a03;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #64748b;
    --accent-primary: #cbd5e1;
    --accent-secondary: #94a3b8;
    --accent-dark: #e2e8f0;
    --accent-gradient: #cbd5e1;
    --gold-accent: #fbbf24;
    --gold-light: #fde68a;
    --gold-dark: #f59e0b;
    --steel-gray: #94a3b8;
    --steel-light: #cbd5e1;
    --steel-dark: #e2e8f0;
    --border-light: #334155;
    --border-card: #334155;
    --shadow-light: rgba(0,0,0,0.2);
    --shadow-card: rgba(0,0,0,0.3);
    --shadow-accent: rgba(203, 213, 225, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

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

/* ===== NAGŁÓWKI ===== */
.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-marker {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.section-marker i {
    color: var(--gold-accent);
    margin-right: 6px;
}

h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

@media (max-width: 700px) {
    h2 { font-size: 2rem; }
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-card);
    border-color: var(--accent-secondary);
}

.theme-toggle i {
    font-size: 1.2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(145deg, var(--steel-dark), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo i {
    color: var(--gold-accent);
    -webkit-text-fill-color: initial;
    font-size: 1.8rem;
}

.btn-nav {
    background: linear-gradient(135deg, var(--steel-dark), var(--steel-gray));
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.4);
}

/* ===== HERO ===== */
.hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gradient {
    background: linear-gradient(145deg, var(--steel-dark), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-gradient));
    color: white;
    padding: 14px 34px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 20px -10px rgba(124, 58, 237, 0.5);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--steel-dark), var(--steel-gray));
    transform: translateY(-3px);
    box-shadow: 0 18px 25px -12px rgba(124, 58, 237, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--steel-light);
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    color: var(--steel-dark);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--gold-accent);
    background: rgba(245, 158, 11, 0.05);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.small-note i {
    color: var(--gold-accent);
    margin-right: 4px;
}

.hero-visual {
    flex: 1 1 400px;
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 40px -25px rgba(0,0,0,0.3);
}

.mini-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    background: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 20px var(--shadow-card);
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(145deg, var(--gold-dark), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== O NAS ===== */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid var(--border-card);
    box-shadow: 0 8px 18px -10px var(--shadow-card);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 25px -12px rgba(245, 158, 11, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, var(--bg-accent), rgba(245, 158, 11, 0.1));
    width: 64px;
    height: 64px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== GALERIA ===== */
.gallery {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-card);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px var(--shadow-accent);
}

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

/* ===== OFERTA ===== */
.offer {
    padding: 80px 0;
    background: var(--bg-primary);
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid var(--border-card);
    box-shadow: 0 8px 18px -10px var(--shadow-card);
    transition: 0.3s;
    text-align: left;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 20px 25px -12px var(--shadow-accent);
}

.offer-icon {
    background: linear-gradient(135deg, var(--steel-dark), var(--gold-dark));
    width: 72px;
    height: 72px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.offer-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== NASZE MARKI ===== */
.products {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.product-card {
    background: var(--bg-tertiary);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--border-card);
    box-shadow: 0 8px 18px -10px var(--shadow-card);
    transition: 0.3s;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 25px -12px rgba(245, 158, 11, 0.2);
}

.product-icon {
    background: linear-gradient(135deg, var(--steel-dark), var(--gold-dark));
    width: 72px;
    height: 72px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-link {
    color: var(--accent-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.product-card:hover .product-link i {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        padding: 24px 20px;
    }
    .product-icon {
        width: 56px;
        height: 56px;
        border-radius: 20px;
    }
    .product-icon i {
        font-size: 1.5rem;
    }
    .product-card h3 {
        font-size: 1.3rem;
    }
}

/* ===== KONTAKT ===== */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    transition: 0.2s;
}

.contact-item:hover {
    box-shadow: 0 8px 16px var(--shadow-light);
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--steel-dark), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item div {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-small {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(145deg, var(--steel-dark), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-small i {
    color: var(--gold-accent);
    -webkit-text-fill-color: initial;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer small {
    color: var(--text-light);
}

/* ===== ANIMACJE ===== */
[data-aos] {
    transition-timing-function: ease-out;
}

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