@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=System-UI:wght@400;600;700&display=swap');

:root {
    --primary-color: #FF5A5F;
    --dark-text: #111827;
    --light-text: #6B7280;
    --background-color: #ffffff;
    --font-main: 'System-UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Playfair Display', serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Main Landing Page Styles --- */
.main-container {
    flex-grow: 1;
    text-align: center;
    padding: 40px 20px;
}

.main-header .logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.main-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark-text);
    margin: 0;
}

.main-header .subtitle {
    font-size: 1.25rem;
    max-width: 450px;
    margin: 0.5rem auto 0;
}

.download-section {
    margin-top: 4rem;
}

.download-section h2 {
    font-size: 2rem;
    color: var(--dark-text);
}

.download-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- Store Buttons (FIXED & UNIFIED SIZE) --- */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* --- Store Buttons (VISUALLY EQUAL SIZE FIX) --- */
.store-button {
    height: 54px;              /* single visual height */
    display: flex;
    align-items: center;
}

.store-button img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Google Play badge is naturally smaller — normalize it */
.store-button.google img {
    transform: scale(1.1);
}


/* --- Footer --- */
.main-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #9CA3AF;
    width: 100%;
    box-sizing: border-box;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6B7280;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- Legal Page Styles (Privacy & Terms) --- */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.legal-container header {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.legal-container h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.legal-container .subtitle {
    font-size: 1rem;
    color: var(--light-text);
}

.legal-container section {
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.legal-container li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.legal-container li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.legal-container li strong {
    color: var(--dark-text);
    font-weight: 600;
}

