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

:root {
    --navy: hsl(222 47% 22%);
    --cream: 40 33% 97%;
    --gold-light: hsl(40 65% 75%);
    --gold: #d4af37;
    --primary: hsl(38 75% 55%);
    --sky: #87ceeb;
    --background: hsl(40 33% 97%);
    --foreground: hsl(222 30% 18%);
    --muted-foreground: hsl(220 15% 45%);
    --card: hsl(45 30% 98%);
    --border: #e5e5e5;
    --gradient-divine: linear-gradient(135deg, hsl(40 65% 75%) 0%, hsl(38 75% 55%) 50%, hsl(36 80% 40%) 100%);
    --gradient-heaven: linear-gradient(180deg, hsl(210 50% 95%) 0%, hsl(40 33% 97%) 100%);
    --gradient-warm: linear-gradient(135deg, hsl(40 33% 97%) 0%, hsl(38 25% 90%) 100%);
    --shadow-card: 0 8px 30px -8px hsla(222, 30%, 18%, .08);
}

body {
    font-family: "Lato", -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    font-size: 16.5px;
}

.container {
    margin: 0 auto;
    padding: 0 24px;
}
h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.25;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: blur(12px);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: hsl(40 33% 97% / 0.95) ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar .nav-brand,
.navbar .nav-menu a,
.navbar .mobile-menu-toggle {
    color: hsl(var(--cream) / .8);
}

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

.nav-content button {
    font-size: .875rem;
    padding: 0.75rem;
    height: 2.25rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s ease;
}

.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-menu a,
.navbar.scrolled .mobile-menu-toggle {
    color: var(--foreground);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-divine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 4px 20px -4px hsla(38, 75%, 55%, .15);
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.05);
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--foreground);
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-divine);
    color: var(--navy);
    box-shadow: 0 4px 20px -4px hsla(38, 75%, 55%, .15);
}

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

.btn-primary svg{
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: hsl(var(--cream));
    border: 2px solid rgba(248, 246, 240, 0.5);
    font-weight: 300;
}

.btn-secondary:hover {
    background: rgba(248, 246, 240, 0.1);
    border-color: rgba(248, 246, 240, 0.8);
    color: var(--navy);
}
.btn-secondary svg {
    width: 16px;
    height: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 100;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg.jpeg') center/cover;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, hsl(222 47% 22% / 0.6) 0%, hsl(222 47% 22% / 0.4) 50%, var(--background) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
    color: hsl(var(--cream));
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
    letter-spacing: -.025em;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-title-accent {
    display: block;
    background: var(--gradient-divine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 42rem;
    color: rgba(248, 246, 240, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin: 32px auto;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
    font-family: "Lato", -apple-system, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
    flex-wrap: wrap;
}

.hero-verse {
    margin-top: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1s;
    padding-top: 2rem;
}

.hero-verse p {
    color: hsl(var(--cream));
    font-style: italic;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 100;
}

.verse-reference {
    color: var(--gold-light);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: rgba(248, 246, 240, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: hsl(var(--cream));
}

.scroll-indicator svg {
    height: 2.5rem;
    width: 2.5rem;
}

/* Sections */
.section {
    padding: 96px 0;
    position: relative;
}

.section-warm {
    background: var(--gradient-warm);
}

.section-heaven {
    background: var(--gradient-heaven);
    position: relative;
    overflow: hidden;
}

.section-heaven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to bottom, white, transparent);
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
}

.text-accent {
    background: var(--gradient-divine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.section-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: hsl(38 75% 55% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

/* Book Section */
.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.book-image {
    position: relative;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
}

.book-glow {
    position: absolute;
    top: -32px;
    left: -32px;
    right: -32px;
    bottom: -32px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

.book-cover {
    width: 24rem;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.book-cover:hover {
    transform: translateY(-8px);
}
.book-content h2{
    line-height: 1.25;
}
.book-grid .btn{
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 12px 2rem;
}
.book-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gradient-divine);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.book-description {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 32px;
}

.book-features {
    margin-bottom: 32px;
}

.book-features button {
    margin-top: 1rem;
}
#journey .section-header{
    margin-bottom: 4rem;
}
#journey .section-description{
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 400;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: hsl(38 75% 55% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.1px;
    background: var(--primary);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-divine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 4px 20px -4px hsla(38, 75%, 55%, .15);
    flex-shrink: 0;
    z-index: 3;
    position: relative;
}
.timeline-icon svg{
    width: 32px;
    height: 32px;
}
.timeline-content {
    background: var(--card);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    flex: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.timeline-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Verse Quote */
.verse-quote {
    text-align: center;
    margin-top: 64px;
    padding: 2rem;
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.verse-quote blockquote {
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif ;
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 16px;

}

.verse-quote cite {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--primary);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: normal;
}

/* Verses Grid */
.verses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 72rem;
    margin: 0 auto;
}

.verse-card {
    background: var(--card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: translate 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.verse-card:nth-child(1) { animation-delay: 0.1s; }
.verse-card:nth-child(2) { animation-delay: 0.2s; }
.verse-card:nth-child(3) { animation-delay: 0.3s; }
.verse-card:nth-child(4) { animation-delay: 0.4s; }
.verse-card:nth-child(5) { animation-delay: 0.5s; }
.verse-card:nth-child(6) { animation-delay: 0.6s; }

.verse-card:hover {
    translate: 0 -3px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.verse-tag {
    display: inline-block;
    padding: 8px 16px;
    background: hsl(38 75% 55% / 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 24px;
}

.verse-mark {
    color: hsl(38 75% 55% / 0.2);
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.verse-card blockquote {
    font-size: 18px;
    font-weight: 300;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.verse-card cite {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 300;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.verse-card cite::before {
    content: '';
    width: 32px;
    height: 1px;
    background: hsl(38 75% 55% / 0.3);
}

/* Author Section */
.author-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 3rem;
    align-items: center;
    max-width: 64rem;
    margin: 0 auto;
}

.author-image {
    position: relative;
    justify-self: center;
    --tw-blur: blur(40px);
    filter: brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) saturate(1) sepia(0) drop-shadow(0 0 #0000);
    grid-column: span 2 / span 2;
}

.author-glow {
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(32px);
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

.author-photo {
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid hsl(38 75% 55% / 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-photo:hover {
    transform: scale(1.05);
}

.author-content{
    grid-column: span 3 / span 3;
}

.author-content .btn-outline {
    font-size: 14px;
}

.author-content .btn-outline svg {
    margin-right: 0.5rem;
}

.author-content .btn-outline:hover{
    background: hsl(38 75% 55% / 0.1);
    color: var(--navy);
}

.author-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 64px;
    height: 64px;
    background: var(--gradient-divine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 4px 20px -4px hsla(38, 75%, 55%, .15);
}

.author-description {
    margin-bottom: 32px;
}

.author-description p {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.author-quote {
    font-style: italic;
    color: var(--foreground)!important;
    font-family: Georgia, 'Times New Roman', Times, serif!important;
}

/* CTA Section */
.cta-section {
    background: var(--navy);
    color: hsl(var(--cream));
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 256px;
    height: 256px;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-divine);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--navy);
    animation: float 4s ease-in-out infinite;
}

.cta-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.cta-description {
    font-size: 20px;
    color: rgba(248, 246, 240, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-verse {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-verse blockquote {
    font-size: 20px;
    font-style: italic;
    color: hsl(var(--cream));
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.cta-verse p {
    color: var(--gold-light);
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-buttons button {
    padding: 0.6rem 2.5rem;
    border-radius: 10px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 12px 24px;
    background: hsl(38 75% 55% / 0.2);
    color: var(--gold-light);
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-radius: 24px;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
}

.footer-description {
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.footer-verse {
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 24px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.footer-verse cite {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
    margin-top: 8px;
}

.footer-divider {
    width: 128px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(102, 126, 234, 0.3), transparent);
    margin: 24px auto;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 14px;
}

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

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

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

@keyframes glow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    h1, h2, h3, h4, h5, h6{
        letter-spacing: -.025em;
    }

    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .book-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .book-badge {
        right: 5.7rem;
    }

    .book-image {
        order: 2;
        justify-content: center;
    }
    .book-image img {
        width: 20rem;
    }
    .author-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .verses-grid {
        grid-template-columns: 1fr;
    }
    .verse-quote blockquote{
        font-size: 1.25rem;
        line-height: 1.625;
        letter-spacing: 0.23px;
    }

    .timeline {
        padding: 0;
    } 

    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-left: 0;
    }

    .timeline-item:nth-child(odd){
        flex-direction: row;
    }
        
    .timeline-content {
        max-width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        margin-left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .author-content{
        text-align: center;
    }
    .author-description, .author-description p{
        font-weight: 300;
        font-size: 1.125rem;
        line-height: 1.625;
    }
    .author-description p{
        padding: 0 14px;
    }
    .author-image img{
        max-width: 256px;
        max-height: 256px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .book-cover {
        width: 280px;
        height: 420px;
    }
    
    .author-photo {
        width: 200px;
        height: 200px;
    }
    .book-image img{
        width: 18rem;
    }
    .timeline-icon{
        width:44px;
        height: 44px;
    }
    .timeline-icon svg{
        width: 24px;
        height: 24px;
    }
    .timeline::after{
        left: 22px;
    }
    .timeline-content h3{
        font-size: 20px;
    }
    p{
        font-size: 15px!important;
    }
    .cta-verse blockquote, .footer-verse{
        font-size: 16px;
    }
    .verse-quote blockquote, .verse-card blockquote{
        font-size: 1rem;
    }
    .verse-quote cite, .verse-card cite,.footer-verse cite{
        font-size: 0.9rem;
    }
    .cta-buttons{
        flex-direction: column;
    }
}
@media (max-width: 408px) {
    .hero-title{
        font-size: 24px;
    }
    .section-title, .cta-title{
        font-size: 24px;
    }
    .book-image img{
        width: 16rem;
    }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even){
        flex-direction: column;
    }
    .author-badge{
        width: 54px;
        height: 54px;
        right: 0;
        bottom: 4px;
    }
    .cta-icon{
        width: 50px;
        height: 50px;
    }
}