/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=Nunito:wght@400;600;700&display=swap');

:root {
    --bg-color: #FDFBF7; /* Soft warm off-white */
    --text-color: #333333;
    --accent-mint: #b2e6d4;
    --accent-yellow: #ffecb3;
    --border-radius: 24px;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Baloo 2', sans-serif;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Navigation */
nav {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.2rem;
}

nav .nav-links a {
    margin-left: 20px;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    opacity: 0.8;
    transition: opacity 0.2s;
}

nav .nav-links a:hover {
    opacity: 1;
}

/* Main Container */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Landing Page Specifics */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #eaf8f1 0%, #FDFBF7 100%);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.app-store-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Text Content Pages (Privacy/Support) */
.content-page {
    background: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content-page p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-page a {
    color: #4F8CFF;
    text-decoration: none;
    font-weight: 600;
}

.contact-block {
    background-color: var(--accent-mint);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.contact-block h3 {
    margin-bottom: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .content-page { padding: 30px 20px; }
}