/**
 * Landing Page Master – tyylit
 * H1 isolla, H2 kursiivilla pienemmällä, bullet lista, FAQ-accordion
 */

/* Navbar ei peitä sisältöä – padding-top fixed navbarille */
body[data-page="landing"] .lp-main {
    padding-top: 5.5rem;
}

.lp-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.lp-article {
    background: var(--jugend-light, #fff);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* H1: Pääotsikko isolla */
.lp-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--jugend-dark, #2C4F36);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* H2: Kursiiviotsikko pienemmällä – H1:n lähellä */
.lp-h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--jugend-green, #2C4F36);
    margin-bottom: 2.25rem;
    opacity: 0.95;
}

/* Heroteksti – lisää tilaa elementtien välille */
.lp-hero {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.75rem;
}

.lp-hero p {
    margin-bottom: 1rem;
}

.lp-hero p:last-child {
    margin-bottom: 0;
}

/* LP-kuva (joogaretriitit, kokoukset jne.) – pienempi koko */
.lp-image {
    margin: 0 auto 2.75rem;
    max-width: 85%;
    border-radius: 8px;
    overflow: hidden;
}

.lp-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bullet lista: otsikko boldilla, kaksoispiste, selitys normaalilla */
.lp-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.75rem;
}

.lp-bullet-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(44, 79, 54, 0.12);
    font-size: 1.05rem;
    line-height: 1.6;
}

.lp-bullet-list li:last-child {
    border-bottom: none;
}

.lp-bullet-list strong {
    color: var(--jugend-green, #2C4F36);
    font-weight: 600;
}

.lp-bullet-list strong::after {
    content: '';
}

/* CTA – Katso varaustilanne -nappi */
.lp-cta {
    margin: 2.5rem 0 3.5rem;
    padding: 0 1.5rem;
}

.lp-article .register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #34c759 0%, #2e8b3e 100%);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    text-transform: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: lp-cta-pulse 6s ease-in-out infinite;
}

.lp-article .register-btn:hover {
    background: linear-gradient(135deg, #30b350 0%, #268b34 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

@keyframes lp-cta-pulse {
    0%, 90% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }
    93%, 97% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(74, 155, 107, 0.12); }
    100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }
}

/* FAQ – laatikot */
.lp-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--jugend-dark, #2C4F36);
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-faq-item {
    border: 1px solid rgba(44, 79, 54, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.lp-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lp-faq-item.is-open {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jugend-green, #2C4F36);
    text-align: left;
    transition: background 0.2s ease;
}

.lp-faq-question:hover {
    background: rgba(44, 79, 54, 0.04);
}

.lp-faq-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: system-ui, sans-serif;
    line-height: 1;
    transition: transform 0.25s ease;
}

.lp-faq-item.is-open .lp-faq-icon {
    transform: rotate(45deg);
}

.lp-faq-answer {
    border-top: 1px solid rgba(44, 79, 54, 0.12);
}

.lp-faq-answer p {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
}

/* LP-footer: sama rakenne kuin muilla sivuilla */
