/* Solemnitas Website Styles */

:root {
    --purple: #6B2D8B;
    --purple-light: #8B4DAB;
    --purple-dark: #4A1D6B;
    --gold: #C9A94E;
    --text: #1a1a1a;
    --text-secondary: #555;
    --bg: #fafafa;
    --white: #fff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */

header {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

header .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
}

header nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 24px;
}

header nav a:hover {
    color: var(--purple);
}

/* Hero */

.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero .app-icon {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero .description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
}

.app-store-badge {
    display: inline-block;
}

.app-store-badge img {
    height: 52px;
}

/* Features */

.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */

footer {
    border-top: 1px solid #e5e5e5;
    padding: 32px 0;
    text-align: center;
}

footer nav {
    margin-bottom: 16px;
}

footer nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 12px;
}

footer nav a:hover {
    color: var(--purple);
}

footer .copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Legal Pages */

.legal {
    padding: 60px 0;
}

.legal h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal .updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--purple-dark);
}

.legal p {
    margin-bottom: 16px;
    color: var(--text);
}

.legal ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal li {
    margin-bottom: 6px;
    color: var(--text);
}

.legal a {
    color: var(--purple);
}

/* Responsive */

@media (max-width: 600px) {
    .hero {
        padding: 48px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    header nav a {
        margin-left: 16px;
        font-size: 0.85rem;
    }
}
