/* Lift Faith - Shared Stylesheet */

/* ==================== */
/* Global Styles */
/* ==================== */

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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #8B1538 0%, #5C0F28 100%);
    min-height: 100vh;
    padding: 20px;
}

/* ==================== */
/* Navigation */
/* ==================== */

.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B1538;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #8B1538;
    background: #f8f9ff;
}

.nav-link.active {
    color: #8B1538;
    font-weight: bold;
}

.nav-cta {
    background: #8B1538;
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #5C0F28;
    transform: scale(1.05);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #8B1538;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* ==================== */
/* Logo Placeholder */
/* ==================== */

.logo-placeholder {
    height: 50px;
    width: 50px;
    background: linear-gradient(135deg, #8B1538 0%, #5C0F28 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

/* ==================== */
/* Container Styles */
/* ==================== */

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
}

.container.landing {
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container.profile {
    max-width: 800px;
}

/* Mountain SVG background for landing page */
.container.landing::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250"><g fill="none" stroke="%23000000" stroke-width="2" opacity="0.15"><path d="M50,180 L100,140 L130,155 L160,120 L200,90 L240,120 L270,145 L310,135 L350,160" stroke-linecap="round" stroke-linejoin="round"/><path d="M100,140 L130,115 L160,125 L200,95 L240,125" stroke-linecap="round" stroke-linejoin="round"/><path d="M130,155 L160,135 L185,145 L215,130 L240,140 L270,148" stroke-linecap="round" stroke-linejoin="round"/><path d="M160,120 L185,105 L200,112 L220,102 L240,120" stroke-linecap="round" stroke-linejoin="round"/><path d="M60,175 L110,145 L145,160 L175,135 L200,115 L230,135 L260,155 L300,142 L340,165" stroke-linecap="round" stroke-linejoin="round"/><line x1="90" y1="165" x2="98" y2="155" stroke-linecap="round"/><line x1="120" y1="150" x2="128" y2="138" stroke-linecap="round"/><line x1="150" y1="160" x2="158" y2="148" stroke-linecap="round"/><line x1="215" y1="130" x2="223" y2="120" stroke-linecap="round"/><line x1="270" y1="148" x2="278" y2="138" stroke-linecap="round"/><line x1="300" y1="142" x2="308" y2="132" stroke-linecap="round"/><path d="M80,170 L95,160 L105,165" stroke-linecap="round"/><path d="M140,158 L152,148 L162,152" stroke-linecap="round"/><path d="M250,138 L262,128 L272,133" stroke-linecap="round"/></g></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/* ==================== */
/* Typography */
/* ==================== */

.app-name {
    font-size: 3.5rem;
    font-weight: bold;
    color: #8B1538;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.app-name.large {
    font-size: 4rem;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tagline.large {
    font-size: 1.3rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 40px;
}

/* ==================== */
/* Headers */
/* ==================== */

.header {
    text-align: center;
    margin-bottom: 50px;
}

/* ==================== */
/* Verse Containers */
/* ==================== */

.verse-container {
    background: #f8f9ff;
    border-left: 5px solid #8B1538;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
}

.verse-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.verse-reference {
    font-size: 1rem;
    color: #8B1538;
    font-weight: bold;
    margin-top: 20px;
}

/* ==================== */
/* Foundation Section */
/* ==================== */

.foundation {
    background: #f8f9ff;
    border-left: 5px solid #8B1538;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.foundation h2 {
    color: #8B1538;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.foundation p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.foundation .verse {
    font-style: italic;
    color: #555;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ==================== */
/* Sections */
/* ==================== */

.section {
    margin: 50px 0;
}

.section h2 {
    color: #8B1538;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* ==================== */
/* Feature Cards */
/* ==================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #8B1538;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ==================== */
/* Pricing Cards */
/* ==================== */

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.plan {
    background: #f8f9ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.plan:hover {
    border-color: #8B1538;
    transform: scale(1.05);
}

.plan.premium {
    background: linear-gradient(135deg, #8B1538 0%, #5C0F28 100%);
    color: white;
}

.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #8B1538;
}

.plan.premium h3 {
    color: white;
}

.plan .price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
    color: #8B1538;
}

.plan.premium .price {
    color: white;
}

.plan .price span {
    font-size: 1.2rem;
    font-weight: normal;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.plan ul li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
}

.plan.premium ul li {
    color: rgba(255, 255, 255, 0.9);
}

.plan ul li:before {
    content: "✓ ";
    color: #8B1538;
    font-weight: bold;
    margin-right: 10px;
}

.plan.premium ul li:before {
    color: white;
}

/* ==================== */
/* Testimonials */
/* ==================== */

.testimonials {
    margin-top: 30px;
}

.testimonial-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #8B1538;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #8B1538;
    font-weight: bold;
}

.coming-soon-note {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* ==================== */
/* FAQ */
/* ==================== */

.faq {
    margin-top: 30px;
}

.faq-item {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-question {
    color: #8B1538;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* ==================== */
/* Forms */
/* ==================== */

.email-signup {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 15px;
}

.email-signup h3 {
    color: #8B1538;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.signup-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.signup-form input[type="email"]:focus {
    border-color: #8B1538;
}

.signup-form button {
    padding: 15px 35px;
    background: #8B1538;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #5C0F28;
}

/* Profile Form Styles */
.form-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 5px solid #8B1538;
}

.form-section h2 {
    color: #8B1538;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s;
}

.checkbox-item:hover {
    background: #e8e9ff;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #8B1538;
}

.checkbox-item label {
    cursor: pointer;
    color: #333;
    font-size: 1rem;
}

.text-input,
.email-input,
.select-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    margin-top: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.text-input:focus,
.email-input:focus,
.select-input:focus {
    border-color: #8B1538;
}

textarea.text-input {
    min-height: 120px;
    resize: vertical;
}

.notification-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.notification-btn {
    padding: 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.notification-btn:hover {
    border-color: #8B1538;
    background: #f8f9ff;
}

.notification-btn.selected {
    background: #8B1538;
    color: white;
    border-color: #8B1538;
}

.plan-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.plan-card {
    padding: 25px;
    background: white;
    border: 3px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.plan-card:hover {
    border-color: #8B1538;
    transform: translateY(-5px);
}

.plan-card.selected {
    border-color: #8B1538;
    background: #f8f9ff;
}

.plan-card h3 {
    color: #8B1538;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #8B1538;
    margin: 15px 0;
}

.plan-card .features {
    text-align: left;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.required {
    color: #8B1538;
    font-weight: bold;
}

/* ==================== */
/* Buttons */
/* ==================== */

.coming-soon {
    display: inline-block;
    background: #8B1538;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: #8B1538;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s;
    text-align: center;
}

.cta-button:hover {
    background: #5C0F28;
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f8f9ff;
    border-radius: 15px;
}

.cta-section h2 {
    color: #8B1538;
    margin-bottom: 20px;
}

.submit-section {
    text-align: center;
    margin-top: 50px;
}

.submit-btn {
    background: #8B1538;
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.submit-btn:hover {
    background: #5C0F28;
    transform: scale(1.05);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

/* ==================== */
/* Messages */
/* ==================== */

.success-message {
    display: none;
    color: #8B1538;
    margin-top: 15px;
    font-weight: bold;
}

.success-message.profile {
    display: none;
    text-align: center;
    padding: 40px;
    background: #f8f9ff;
    border-radius: 15px;
    margin-top: 30px;
}

.success-message.profile h2 {
    color: #8B1538;
    margin-bottom: 20px;
    font-size: 2rem;
}

.success-message.profile p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==================== */
/* Footer */
/* ==================== */

.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ==================== */
/* Responsive Design */
/* ==================== */

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 40px 25px;
    }

    .app-name {
        font-size: 2.5rem;
    }

    .app-name.large {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .features,
    .pricing {
        grid-template-columns: 1fr;
    }

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

    .notification-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input[type="email"] {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 2rem;
    }

    .app-name.large {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}
