/* Groove AI Website Styles */
/* Dark theme matching Groove AI app aesthetic */

:root {
    --bg-primary: #0B0B0F;
    --bg-secondary: #16161A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent: #FF6B9D;
    --accent-hover: #FF85AD;
    --border: #2A2A30;
    --card-bg: #1A1A1F;
}

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

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-icon {
    font-size: 48px;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB86C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Main Content */
main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.app-store-btn img {
    height: 60px;
    border-radius: 12px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

.feature {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Legal Pages */
.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.back-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.legal-content {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB86C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 24px;
    margin-top: 8px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .hero {
        padding: 40px 20px 30px;
    }

    .logo-icon {
        font-size: 36px;
    }

    .logo-text {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .app-store-btn img {
        height: 50px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature {
        padding: 20px;
    }

    .legal-header {
        flex-direction: column;
        gap: 12px;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 18px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}