/* Dottie Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background-color: #CFE0FF;
    color: #2c3e50;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* App icon */
.app-icon {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

/* Typography */
h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.value-prop {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    margin-bottom: 3rem;
    cursor: not-allowed;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 0.85;
}

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

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
}

footer a {
    color: #4a5568;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.2s;
    white-space: nowrap;
}

footer a:hover {
    color: #1a2332;
}

/* Content pages */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    line-height: 1.7;
}

.content-page h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.content-page h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.content-page h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.content-page p {
    margin-bottom: 1rem;
}

.content-page ul, .content-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.content-page a {
    color: #4a5568;
    text-decoration: underline;
}

.content-page a:hover {
    color: #1a2332;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #1a2332;
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .value-prop {
        font-size: 0.9rem;
    }
    
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.7rem;
    }
    
    footer a {
        margin: 0 0.5rem;
    }
    
    .content-page h1 {
        font-size: 2rem;
    }
    
    .content-page h2 {
        font-size: 1.5rem;
    }
}

