@charset "UTF-8";
/* extracted from index.php <style> — CSS refactor Phase C */
/* ── Landing Page Styles ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #faf8f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Hero Section ── */
.landing-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 60px 24px;
    text-align: center;
}

.landing-brand {
    font-size: 3em;
    color: #990000;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.landing-tagline {
    font-size: 1.25em;
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.landing-sub {
    font-size: 1em;
    color: #888;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 36px;
}


/* ── CTA Buttons ── */
.landing-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 380px;
}

.btn-begin {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #990000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: Georgia, serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 14px rgba(153,0,0,0.25);
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}
.btn-begin:hover {
    background: #770000;
    box-shadow: 0 6px 18px rgba(153,0,0,0.35);
    color: #fff;
    text-decoration: none;
}

.btn-existing {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #7a1a1a;
    color: #fff;
    border: 2px solid #7a1a1a;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: Georgia, serif;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}
.btn-existing:hover {
    background: #5c1212;
    border-color: #5c1212;
    color: #fff;
    text-decoration: none;
}

/* ── Footer ── */
.landing-footer {
    text-align: center;
    padding: 16px 24px;
    font-size: 0.8em;
    color: #aaa;
    border-top: 1px solid #ece8e2;
}
.landing-footer a { color: #996666; text-decoration: none; }
.landing-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .landing-brand { font-size: 2.2em; }
    .feature-hints { gap: 12px; }
    .hint-card { width: 140px; padding: 12px 14px; }
}
