/* SoulMatch - Warm Minimal Theme */

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

:root {
    --background: #FFF8F0;
    --surface: #FFFFFF;
    --surface2: #FFF2E5;
    --text: #3A2A20;
    --muted-text: #7A665A;
    --accent: #D97706;
    --border: rgba(0,0,0,0.08);
    --radius: 16px;
    --max-width: 980px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
nav {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav .nav-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Main Content */
main {
    flex: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

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

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

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

/* Button */
.btn {
    display: inline-block;
    margin: 0.5rem;
    background-color: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.card p {
    color: var(--muted-text);
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Content Sections */
.content-section {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.content-section p,
.content-section li {
    color: var(--muted-text);
    margin-bottom: 0.5rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    padding-left: 1.5rem;
    position: relative;
}

.content-section ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* Prose Content */
.prose {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.prose h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.prose p {
    color: var(--muted-text);
    margin-bottom: 1rem;
}

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

/* Contact Form */
.contact-info {
    background-color: var(--surface2);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem;
    margin-top: auto;
}

footer .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

footer .footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--accent);
}

footer .copyright {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav .nav-links {
        gap: 1rem;
    }

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

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

    .cards {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
