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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b3a4b 0%, #274c5b 50%, #1b3a4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tagline {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #7ec8e3;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-primary {
    background: #7ec8e3;
    color: #1b3a4b;
}

.btn-primary:hover {
    background: #6ab8d6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Tiles */
.tiles {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tile {
    display: block;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.tile:hover {
    border-color: #7ec8e3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.tile h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1b3a4b;
}

.tile p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About / Info Sections */
.about {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.verse {
    font-style: italic;
    color: #1b3a4b;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(126, 200, 227, 0.1);
    border-radius: 8px;
    border-left: 3px solid #7ec8e3;
    text-align: left;
}

.verse cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b3a4b;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    background: #1b3a4b;
    color: #ffffff;
}

.cta-btn:hover {
    background: #274c5b;
    transform: translateY(-2px);
}

/* Page Detail Styles */
.page-hero {
    background: linear-gradient(135deg, #1b3a4b 0%, #274c5b 50%, #1b3a4b 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ffffff;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.page-details {
    padding: 4rem 2rem;
}

.details-content {
    max-width: 650px;
    margin: 0 auto;
}

.details-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.details-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b3a4b;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.details-content ul {
    list-style: none;
    padding: 0;
}

.details-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}

.details-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #7ec8e3;
    border-radius: 50%;
}

/* Reviews/Stories */
.review-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #7ec8e3;
}

.review-card p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.review-card .reviewer {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b3a4b;
}

/* Week cards */
.week-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.week-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b3a4b;
    margin-bottom: 0.4rem;
}

.week-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #1b3a4b;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 5rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }

    .tiles, .about, .cta {
        padding: 3rem 1.5rem;
    }

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

    .section-sub {
        margin-bottom: 2rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tile {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .verse {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .page-hero {
        padding: 3rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .page-details {
        padding: 3rem 1.5rem;
    }
}
