/* ===================================
   Christian Author Website Styles
   Feminine & Elegant Design
   =================================== */

/* Root Variables - Feminine Color Palette */
:root {
    --primary-color: #8B6F7E; /* Soft Purple-Pink */
    --secondary-color: #D4C5B0; /* Warm Beige */
    --accent-color: #E8D5C4; /* Light Peach */
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --success-color: #7B9B6F;
    --gold-accent: #D4AF37;
    --rose-gold: #E8B4B8;
}

/* Typography */
body {
    font-family: 'Lora', 'Cormorant Garamond', serif;
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 15px; /*67 original*/ 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-color);
}

.navbar-brand {
    font-size: 1.3rem;
    color: var(--primary-color) !important;
}

.navbar-brand:hover {
    color: var(--rose-gold) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

@media (min-width: 992px){

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
}

.nav-link::after {
    background: var(--primary-color);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    /* content: '✝'; */
    position: absolute;
    font-size: 20rem;
    color: rgba(139, 111, 126, 0.05);
    right: -5%;
    top: 10%;
    transform: rotate(15deg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(139,111,126,0.1)"/></svg>'); */
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-book-cover {
    border-radius: 10px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    border: 8px solid var(--bg-white);
}

.hero-book-cover:hover {
    transform: rotate(0deg) scale(1.05);
}

.cross-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 126, 0.3);
}

.btn-primary:hover {
    background: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 126, 0.4);
}

.btn-primary:active {
    --bs-btn-active-bg: var(--rose-gold);
    --bs-btn-active-border-color: var(--rose-gold);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline-primary:active {
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color:var(--primary-color);
}


/* Verse Sections */
/* .verse-section {
    background: var(--bg-light);
} */

.verse-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.1);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.verse-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.verse-text-large {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.verse-reference {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.verse-text-highlight {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.verse-text-small {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.verse-reference-small {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-style: italic;
}

.header-decoration {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
}

/* About Section */
.author-photo {
    border: 5px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.2);
}

.story-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verse-highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.15);
}

.mission-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Cards */
.pillar-card, .theme-card, .audience-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 111, 126, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.pillar-card:hover, .theme-card:hover, .audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.2);
}

.pillar-icon, .theme-icon, .audience-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pillar-title, .theme-title, .audience-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-text, .theme-text, .audience-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Book Section */
.main-book-cover {
    border-radius: 10px;
    border: 5px solid var(--bg-white);
}

.book-main-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.book-main-author {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.book-description-large {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.description-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-list {
    list-style: none;
    padding-left: 0;
}

.description-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.description-list li::before {
    content: '✞';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.verse-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 111, 126, 0.1);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.verse-item .verse-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.verse-item .verse-ref {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 111, 126, 0.1);
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--rose-gold);
}

.testimonial-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
}

.contact-item-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item-text {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.1);
}

.form-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'Lora', serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 111, 126, 0.25);
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.verse-box-contact {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Prayer Section */
.prayer-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 111, 126, 0.1);
}

.prayer-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.prayer-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.prayer-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prayer-verse {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* CTA Sections */
.cta-section, .purchase-cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Footer */
.footer-section {
    border-top: 3px solid var(--accent-color);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.social-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--rose-gold);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .verses-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* My Code */
.icons {
    color: var(--secondary-color);
}
