/* PlanttyTime - Modern Minimalist Styles */

:root {
    --primary-green: #4CAF50;
    --dark-green: #2E7D32;
    --light-green: #81C784;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --text-dark: #212121;
    --text-secondary: #757575;
    --border-light: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: white;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content > div {
    text-align: left;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Card Style */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px var(--shadow);
}

/* Landing Page Specific */
.hero {
    text-align: center;
    padding: 3rem 1rem;
}

.hero h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.play-badge {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-badge:hover {
    transform: scale(1.05);
}

.cta-secondary {
    display: inline-block;
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.cta-secondary:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.feature-item h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Privacy Policy Specific */
.privacy-content h2 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-green);
}

.privacy-content h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-content strong {
    color: var(--dark-green);
    font-weight: 600;
}

.privacy-content a {
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 1px solid var(--light-green);
    transition: all 0.2s ease;
}

.privacy-content a:hover {
    color: var(--dark-green);
    border-bottom-color: var(--dark-green);
}

.info-box {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

footer a {
    color: var(--light-green);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

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

    .header-content > div {
        text-align: center;
    }

    .logo {
        width: 56px;
        height: 56px;
    }

    header h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

    .card {
        padding: 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .play-badge {
        height: 60px;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    header p {
        font-size: 0.95rem;
    }

    .container {
        margin: 1rem auto;
    }

    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .play-badge {
        height: 50px;
    }
}
