/* ====== ROBOTA TWOJA DZIŚ - UNIKALNY DESIGN ====== */
/* Modern Dynamic Theme - Blue & Orange Gradient */

:root {
    /* Kolory główne */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #f97316;
    --secondary-dark: #ea580c;
    --secondary-light: #fb923c;
    
    /* Kolory neutralne */
    --dark-color: #1e293b;
    --dark-light: #334155;
    --gray-color: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --white-color: #ffffff;
    --white-dark: #f8fafc;
    
    /* Gradienty */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-hero: linear-gradient(135deg, #1d4ed8 0%, #f97316 100%);
    
    /* Cienie */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====== RESET I PODSTAWY ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-color);
    background-color: var(--white-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ====== TYPOGRAFIA ====== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* ====== PRZYCISKI ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    color: var(--white-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ====== NAGŁÓWEK ====== */
.site-header {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.logo a {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.main-nav a:hover::after {
    width: 100%;
}

/* ====== SEKCJA HERO ====== */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white-color);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ====== SEKCJA O NAS ====== */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
}

.about-features {
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 600;
    box-shadow: var(--shadow-xl);
}

/* ====== SEKCJA ZESPOŁU ====== */
.team-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.team-member {
    background: var(--white-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.member-name {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.member-description {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ====== SEKCJA OFERT PRACY ====== */
.jobs-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.job-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-lighter);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.job-header {
    margin-bottom: var(--spacing-md);
}

.job-title {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.job-company .company-link {
    color: var(--primary-color);
    font-weight: 500;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.job-location,
.job-remote,
.job-salary,
.job-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-color);
    font-size: 0.9rem;
}

.icon {
    font-size: 1rem;
}

.job-description {
    margin-bottom: var(--spacing-md);
}

.job-description p {
    color: var(--gray-color);
    line-height: 1.6;
}

.job-contact {
    margin-bottom: var(--spacing-md);
}

.contact-email {
    color: var(--secondary-color);
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* ====== SEKCJA PARTNERÓW ====== */
.partners-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.partner-item {
    text-align: center;
}

.partner-link {
    display: block;
    padding: var(--spacing-md);
    background: var(--white-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    font-weight: 500;
    color: var(--dark-color);
}

.partner-link:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ====== SEKCJA PORAD ====== */
.advice-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white-color);
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.advice-card {
    background: var(--white-dark);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.advice-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.advice-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.advice-content p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    color: var(--gray-color);
}

.advice-content strong {
    color: var(--dark-color);
}

/* ====== SEKCJA KONTAKT ====== */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-primary);
    color: var(--white-color);
}

.contact-section .section-title {
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-item {
    margin-bottom: var(--spacing-lg);
}

.contact-item h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.contact-item a {
    color: var(--white-color);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ====== STOPKA ====== */
.site-footer {
    background: var(--gradient-dark);
    color: var(--white-color);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--white-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ====== STRONA OFERTY ====== */
.job-offer-full {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.job-offer-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-lighter);
}

.job-offer-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.job-offer-company .company-link {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.job-offer-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--white-dark);
    border-radius: var(--radius-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.meta-icon {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.meta-label {
    font-weight: 600;
    color: var(--gray-color);
    min-width: 100px;
}

.meta-value {
    color: var(--dark-color);
    font-weight: 500;
}

.job-offer-description {
    margin-bottom: var(--spacing-xl);
}

.job-offer-description h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.description-content {
    line-height: 1.8;
    color: var(--gray-color);
}

.job-offer-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ====== STRONA WSZYSTKICH OFERT ====== */
.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page-title {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.jobs-filters {
    display: flex;
    gap: var(--spacing-md);
    align-items: end;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--white-dark);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--dark-color);
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    background: var(--white-color);
    font-family: inherit;
    transition: var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.results-info {
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
    color: var(--gray-color);
}

.no-jobs-message {
    text-align: center;
    padding: var(--spacing-xxl);
    background: var(--white-dark);
    border-radius: var(--radius-lg);
}

.no-jobs-message h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.no-jobs-message p {
    color: var(--gray-color);
    margin-bottom: var(--spacing-sm);
}

/* ====== RESPONSYWNOŚĆ ====== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .advice-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .job-offer-meta {
        grid-template-columns: 1fr;
    }
    
    .jobs-filters {
        flex-direction: column;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ====== ANIMACJE ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card,
.advice-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* ====== DODATKOWE ELEMENTY ====== */
.breadcrumb {
    margin-bottom: var(--spacing-lg);
    color: var(--gray-color);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.error-message {
    text-align: center;
    padding: var(--spacing-xxl);
    background: var(--white-dark);
    border-radius: var(--radius-lg);
}

.error-message h2 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.section-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}
