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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #2c5f9e;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 1.2rem;
    font-weight: 600;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

header nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.cover-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.title {
    font-size: 2rem;
    color: #2c5f9e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 280px;
    text-align: center;
}

.btn-primary {
    background-color: #1DB954;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.btn-secondary {
    background-color: #2c5f9e;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #3d7bc4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 158, 0.3);
}

.btn-copy {
    background-color: #fff;
    color: #2c5f9e;
    border: 2px solid #2c5f9e;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    min-width: auto;
}

.btn-copy:hover {
    background-color: #2c5f9e;
    color: #fff;
}

.btn-download {
    background-color: #4a7ba7;
    color: #fff;
}

.btn-download:hover {
    background-color: #5a8bb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.3);
}

/* RSS Section */
.rss-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rss-link {
    color: #2c5f9e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
}

.rss-link:hover {
    text-decoration: underline;
}

/* Spotify Embed */
.spotify-embed {
    max-width: 500px;
    margin: 2rem auto 0;
}

/* Content Sections */
section {
    padding: 3rem 0;
}

section h3 {
    font-size: 1.8rem;
    color: #2c5f9e;
    margin-bottom: 1rem;
    font-weight: 700;
}

section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.creator {
    font-weight: 600;
    color: #555;
    margin-top: 1.5rem;
}

/* Bible Name Aid Section */
.bible-name-aid {
    background-color: #f8f9fa;
}

.bible-name-aid a {
    color: #2c5f9e;
    font-weight: 600;
}

.bible-name-aid a:hover {
    text-decoration: none;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2c5f9e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
}

/* Reading Schedule Section */
.reading-schedule {
    background-color: #f8f9fa;
    text-align: center;
}

.reading-schedule p {
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: #2c5f9e;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Responsive Design */
@media (min-width: 600px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .rss-section {
        flex-direction: row;
        justify-content: center;
    }
    
    .header-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        min-width: 100%;
        max-width: 320px;
    }
    
    .cover-image {
        max-width: 250px;
    }
}
