@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary: #0a1f3f;      /* Ciemny granat z oryginału */
    --primary-light: #163666;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --white: #ffffff;
    
    --radius-sm: 8px;
    --radius-md: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 5rem 0 3rem;
    background: var(--bg-main);
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
}

/* Images Row (Original Wix Style) */
.images-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0 5rem;
}

.portrait-img {
    flex: 1;
    height: 400px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
}

/* Section: O Inicjatywie */
.section-info {
    padding: 5rem 0;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.info-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.side-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
}

/* Pricing Grid */
.pricing-section {
    padding: 5rem 0;
    background: #fafafa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
}

/* Contact / Form Section */
.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

/* Footer */
.footer {
    background: #051024;
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
