/* Import nowoczesnych czcionek */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Ustawienie czcionek dla homepage */
.homepage-container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hero section typography */
.hero-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.5rem; /* 40px - Reduced from 3.5rem for better mobile view */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* 72px */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem; /* 80px */
    }
}

.hero-subtitle {
    font-size: 1.25rem; /* 20px */
    line-height: 1.6;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem; /* 24px */
    }
}

/* Section headings */
.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem; /* 48px */
    }
}

.section-subtitle {
    font-size: 1.25rem; /* 20px */
    line-height: 1.6;
    font-weight: 400;
}

/* Card typography */
.card-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.card-text {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    font-weight: 400;
}

/* News card typography */
.news-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.news-excerpt {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    font-weight: 400;
}

.news-meta {
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
}

/* Contact section */
.contact-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.contact-text {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    font-weight: 400;
}

/* Button typography */
.btn-text {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Enhanced hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

