/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
    color: #e74c3c;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Main Content Styles */
.main-content {
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    min-height: 60vh;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bible-illustration {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.bible-illustration i {
    font-size: 8rem;
    color: white;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    padding: 0.5rem;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-icon:hover {
    background: #f8f9fa;
    color: #667eea;
}

/* Search Section */
.search-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 16px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.search-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.search-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-select,
.search-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-width: 120px;
}

.search-select:focus,
.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-alternative {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.full-width {
    flex: 1;
}

/* Results Section */
.results-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.verse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.verse-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.verse-actions {
    display: flex;
    gap: 0.5rem;
}

.verse-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.verse-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.translation-info {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.testament-info {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verse-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Daily Verse Section */
.daily-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 16px;
}

.daily-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.daily-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.daily-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.daily-verse {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading i {
    font-size: 2rem;
}

.daily-verse-display h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.daily-verse-display p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.daily-verse-display small {
    opacity: 0.8;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Christian Radio Section */
.radio-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 16px;
}

.radio-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.radio-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.radio-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.radio-player {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.radio-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.radio-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.radio-details h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.radio-details p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.radio-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-indicator i {
    color: #2ecc71;
    animation: pulse 2s infinite;
}

.radio-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-play-btn {
    min-width: 140px;
}

.radio-play-btn.playing {
    background: #2ecc71;
}

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

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.feature h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: #f8f9fa;
    margin: 2rem 0;
    border-radius: 16px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-text ul {
    margin-left: 2rem;
    color: #666;
    margin-bottom: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat small {
    color: #999;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

    .nav {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .bible-illustration {
        width: 200px;
        height: 200px;
    }

    .bible-illustration i {
        font-size: 5rem;
    }

    .search-inputs {
        flex-direction: column;
    }

    .search-alternative {
        flex-direction: column;
    }

    .verse-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .verse-navigation {
        flex-direction: column;
    }

    .radio-player {
        flex-direction: column;
        text-align: center;
    }

    .radio-info {
        flex-direction: column;
    }

    .radio-controls {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100vw;
        min-width: 0;
        padding: 0;
    }
    body {
        font-size: 1.1rem;
    }
    .main-content {
        padding: 0.5rem;
    }
    .hero-content h2 {
        font-size: 1.3rem;
    }
    .search-box, .results-section, .daily-verse, .radio-player, .feature, .about-section, .about-container, .about-content, .about-stats, .stat {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    .search-input, .search-select, .btn, .btn-primary, .btn-secondary {
        width: 100%;
        min-width: 0;
        font-size: 1.1rem;
        height: 48px;
        box-sizing: border-box;
    }
    .btn, .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 0.75rem 1rem;
    }
    .radio-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    .radio-player {
        flex-direction: column;
        gap: 1rem;
    }
    .radio-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    .radio-features {
        grid-template-columns: 1fr;
    }
    .feature i {
        font-size: 2.2rem;
    }
    .footer {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* API Status Indicator */
.api-status {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.api-status.offline {
    background: #e74c3c;
}

.api-status i {
    font-size: 0.7rem;
    animation: pulse 2s infinite;
} 