/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #221813;
    background: #f1e6e0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #f1e6e0;
    width: 100%;
    z-index: 100;
    flex-shrink: 0;
}

.navbar {
    width: 100%;
    height: 60px;
    background: #f1e6e0;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 40px;
    width: auto;
    margin-left: 130px;
}

/* Main content */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    color: #221813;
    overflow: visible;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    height: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #221813;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #221813;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.btn-image {
    height: 60px;
    width: auto;
    display: block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:hover .btn-image {
    transform: scale(1.05);
}

/* Phone mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: calc(50% + 50px);
    transform: translateY(-50%);
    z-index: 9999;
    width: 50%;
    height: 100vh;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #f1e6e0;
    border-radius: 30px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blessing-card {
    background: transparent;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    width: 100%;
}

.verse-text {
    font-size: 1.3rem;
    color: #221813;
    margin-bottom: 12px;
    font-style: normal;
    line-height: 1.3;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
}

.verse-reference {
    font-size: 0.8rem;
    color: #333;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.version-pill {
    background: #221813;
    color: #f1e6e0;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.verse-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.action-icon {
    color: #221813;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.version-pill i {
    font-size: 0.6rem;
    color: #f1e6e0;
}



/* Features section - hidden for single screen */
.features {
    display: none;
}

/* Footer */
.footer {
    background: #f1e6e0;
    color: #221813;
    padding: 2rem 0;
    flex-shrink: 0;
    z-index: 100;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 130px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #221813;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.social-link i {
    font-size: 1.5rem;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
    width: 100%;
    text-align: left;
}

.footer-link {
    color: #221813;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #000;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn {
        min-width: 180px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 15px;
    }
    
    .blessing-card {
        padding: 20px;
    }
    
    .verse-text {
        font-size: 1rem;
    }
}