/* ================================================================
   Landing Page — fotozymela.pl brand
   Mobile-first, Montserrat, B&W + green accent (#09CF91)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

#landing-page {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: #000;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── Hero ───────────────────────────────────────────────────────── */

.lp-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: #000;
}

.lp-hero-inner {
    max-width: 600px;
}

.lp-hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.lp-hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.lp-hero-cta {
    display: inline-block;
    background: #09CF91;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    min-height: 44px;
    touch-action: manipulation;
}

.lp-hero-cta:active {
    background: #A4F6D1;
    color: #03513E;
}

/* ── Products grid ─────────────────────────────────────────────── */

.lp-products {
    background: #fff;
    padding: 48px 20px;
}

.lp-products-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.lp-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.lp-card:active {
    transform: scale(0.98);
}

.lp-card--disabled {
    opacity: 0.5;
    pointer-events: none;
}

.lp-card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.lp-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.lp-card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.lp-card-btn {
    display: block;
    margin-top: auto;           /* przycisk zawsze przy dolnej krawedzi */
    background: #09CF91;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    min-height: 44px;
    touch-action: manipulation;
}

.lp-card-btn:active {
    background: #A4F6D1;
    color: #03513E;
}

.lp-card-btn--soon {
    background: #e0e0e0;
    color: #999;
    cursor: default;
}

/* ── Footer CTA ────────────────────────────────────────────────── */

.lp-footer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

.lp-footer-quote {
    font-size: 1.1rem;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.lp-footer-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
}

.lp-footer-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: #09CF91;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ── Desktop (3-column grid) ───────────────────────────────────── */

@media (min-width: 768px) {
    .lp-hero-title {
        font-size: 3rem;
    }

    .lp-hero-subtitle {
        font-size: 1.15rem;
    }

    .lp-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .lp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .lp-hero-cta:hover,
    .lp-card-btn:hover {
        background: #A4F6D1;
        color: #03513E;
    }

    .lp-footer-quote {
        font-size: 1.3rem;
    }

    .lp-footer-tagline {
        font-size: 1.6rem;
    }
}

/* ── Safe area for iOS ─────────────────────────────────────────── */

@supports (padding: env(safe-area-inset-bottom)) {
    .lp-footer {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
}
