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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.shirt-preview {
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 20px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.shirt-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    line-height: 1.4;
}

h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.tagline {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full-bg {
    width: 100%;
    padding: 6rem 0;
}

.section-full-bg .section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.parable-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.parable-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.verse {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d2d2d;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 5px solid #1a1a1a;
    border-radius: 10px;
}

.verse-reference {
    text-align: right;
    font-weight: 700;
    color: #666;
    margin-top: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.reflection-section {
    background: #1a1a1a;
    color: white;
}

/* Choice section styles */
.choice-section {
    background: #fdfdfd; /* Lighter background than #f8f9fa */
    color: #1a1a1a;
    padding: 6rem 2rem;
}

.choice-content {
    max-width: 900px;
    margin: 0 auto;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.choice-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #1a1a1a;
}

.choice-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.abc-section {
    background: #f0f4f8;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
}

        .abc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

.abc-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.abc-letter {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.abc-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.choice-footer {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
}

.choice-footer p {
    margin-bottom: 1.5rem;
}

.prayer-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed #ccc;
    margin: 2rem 0;
    font-style: italic;
}

.reflection-section .section-title {
    color: white;
}

.question-list {
    max-width: 800px;
    margin: 0 auto;
}

.question {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.question h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.question p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.final-cta {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #d1d1d1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Eternity reflection section styles */
.eternity-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.eternity-main-statement {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 600;
}

.eternity-activities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fade transition container */
.eternity-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem auto; /* Added bottom margin */
    height: 150px; /* Fixed height for smooth transitions */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: none; /* Ensure no border */
}

.eternity-activity {
    width: 100%;
    height: 100%;
    background: white;
    padding: 2.5rem 3rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    color: #2d2d2d;
    text-align: center;
    line-height: 1.6;
    display: none;
    align-items: center;
    justify-content: center;
}

.eternity-activity.active {
    display: flex;
}

.eternity-activity span {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 1s ease;
}

.eternity-activity.active span {
    opacity: 1;
    transform: translateY(0);
    animation: slideUpFadeIn 1s ease forwards;
}

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

.eternity-conclusion {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
    position: relative;
}

/* Dove parable section */
#dove-parable {
    width: 100%;
    padding: 6rem 2rem;
    margin: 0;
    background: #222;
}

.dove-parable-section {
    background: #444;
    color: #fff;
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dove-parable-section h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    letter-spacing: -1px;
}

.dove-parable-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: top;
}

.dove-parable-item {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.dove-parable-item strong {
    color: #fff;
    font-weight: 700;
}

/* Parable content styles */
.parable-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Well done section styles */
.well-done-divider {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.well-done-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d2d2d;
}

.well-done-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Well done section with gray background */
.well-done-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.well-done-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.well-done-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.well-done-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.well-done-card p {
    color: #555;
    line-height: 1.6;
}

.biblical-citation {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Well done intro styling */
.well-done-intro {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #1a1a1a;
}

.well-done-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.well-done-intro p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1a1a1a;
}

/* Final CTA emphasis */
.final-cta-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
}

/* Footer spacing */
.footer-spacing {
    margin-top: 1rem;
    font-size: 0.9rem;
}

footer {
    background: #0a0a0a;
    color: #999;
    padding: 2rem;
    text-align: center;
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .section-full-bg .section-content {
        padding: 0 1rem;
    }

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

    .well-done-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .well-done-intro {
        padding: 2rem;
        margin: 2rem 0;
    }

    .well-done-intro p {
        font-size: 1rem;
    }

    #dove-parable {
        padding: 6rem 2rem;
    }

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

    .dove-parable-item {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

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

    .section {
        padding: 4rem 1rem;
    }

    .section-full-bg {
        padding: 4rem 0;
    }

    .shirt-preview {
        width: 150px;
        height: 150px;
    }

    .shirt-text {
        font-size: 1rem;
    }

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

    .card {
        padding: 2rem 1.5rem;
    }

    .verse {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .question {
        padding: 1.5rem;
    }

    /* Responsive grid for the expanded content */
    .well-done-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .well-done-card {
        padding: 2rem;
    }

    .well-done-intro {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .well-done-intro p {
        font-size: 0.95rem;
    }

    #dove-parable {
        padding: 2rem 1rem;
    }

    .dove-parable-section {
        padding: 2rem 1rem;
        margin: 0 auto;
    }

    .dove-parable-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .dove-parable-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dove-parable-item {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Eternity section responsive */
    .eternity-section {
        padding: 3rem 1.5rem;
        margin: 0 1rem 2rem;
    }

    .eternity-main-statement {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .eternity-activities {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .eternity-carousel {
        height: 180px;
    }

    .eternity-activity {
        padding: 2rem 2rem;
        font-size: 1.1rem;
    }

    .eternity-conclusion {
        font-size: 1.4rem;
    }

    .eternity-conclusion::before {
        width: 40px;
        top: -15px;
    }

    .choice-section {
        padding: 4rem 1rem;
    }

    .choice-grid, .abc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .abc-section {
        padding: 2rem 1.5rem;
    }

    .abc-letter {
        font-size: 2.5rem;
    }

    .choice-footer {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .verse {
        font-size: 1rem;
    }

    /* Ensure touch targets are large enough */
    .cta-button, .card, .question {
        min-height: 44px;
    }

    .eternity-section {
        padding: 2rem 1rem;
        margin: 0 0.5rem 1.5rem;
    }

    .eternity-main-statement {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .eternity-activities {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .eternity-carousel {
        height: 160px;
    }

    .eternity-activity {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .eternity-conclusion {
        font-size: 1.2rem;
    }

    .eternity-conclusion::before {
        width: 30px;
        top: -12px;
    }
}
