/**
 * ChurchView - Main Styles
 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #0d0d12 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: #a78bfa;
    text-decoration: none;
}

a:hover {
    color: #c4b5fd;
}

/* Header */
.header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 22px;
    color: #a0a0a0;
    margin-bottom: 50px;
}

/* Platform Buttons */
.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 35px;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.15);
}

.platform-btn .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.platform-btn.roku .icon {
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
}

.platform-btn.fire .icon {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.platform-btn .text {
    text-align: left;
}

.platform-btn .text .label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 2px;
}

.platform-btn .text .name {
    font-size: 18px;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
}

.feature i {
    font-size: 32px;
    color: #a78bfa;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 13px;
    color: #888;
}

/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-section .section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-page .last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #a78bfa;
}

.legal-page p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    color: #ccc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .platform-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}
