/* Global Styles */
:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #8b4513;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-cream: #fef5e7;
    --border-light: #e2e8f0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
}

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

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo h1 {
    font-size: 2rem;
    color: white;
    margin: 0;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M1200 120L0 16.48V0h1200v120z" fill="%23ffffff" fill-opacity="0.1"/></svg>') bottom;
    background-size: 100% 120px;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    color: var(--text-light);
}

.video-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.video-info i {
    color: var(--primary-color);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: white;
}

.main-content h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-content h3 i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.main-content h4 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--accent-color);
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.main-content ul, .main-content ol {
    margin: 20px 0;
    padding-right: 25px;
}

.main-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff9e6 100%);
    border-right: 5px solid var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.intro-text strong {
    color: var(--primary-color);
}

/* Special Box */
.special-box {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.special-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Concept Cards */
.concept-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.concept-card.highlight {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-color: var(--primary-color);
}

.concept-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.concept-card ul {
    list-style: none;
    padding: 0;
}

.concept-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.concept-card li:last-child {
    border-bottom: none;
}

.concept-card strong {
    color: var(--accent-color);
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.quote-box i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.quote-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 0 15px 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    display: block;
    text-align: left;
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
}

/* Story Box */
.story-box {
    background: linear-gradient(to bottom, #fff, var(--bg-cream));
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.story-box.success {
    background: linear-gradient(to bottom, #fff, #f0fff4);
    border-color: var(--success-color);
}

.story-box h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.story-box p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.story-lesson {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-right: 4px solid var(--secondary-color);
    border-radius: 6px;
    margin-top: 20px;
}

.key-lesson {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    padding: 20px;
    border-right: 4px solid var(--success-color);
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.key-lesson i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.story-quote {
    background: white;
    padding: 20px;
    border-right: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid var(--warning-color);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h4 {
    color: var(--warning-color);
    margin-bottom: 15px;
}

/* Important Text */
.important-text {
    background: var(--bg-cream);
    padding: 20px;
    border-right: 5px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1.05rem;
    margin: 25px 0;
    line-height: 1.9;
}

.highlight-text {
    background: linear-gradient(120deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(253, 203, 110, 0.3);
}

/* Steps List */
.steps-list {
    counter-reset: steps;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding: 20px 25px 20px 70px;
    margin-bottom: 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.steps-list li:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.15);
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Practical Box */
.practical-box {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    border: 2px solid #38b2ac;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.practical-box h4 {
    color: #2c7a7b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.practical-box h4 i {
    color: #38b2ac;
}

/* Tips Box */
.tips-box {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e6 100%);
    border: 2px solid #f687b3;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.tips-box h4 {
    color: #d53f8c;
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tips-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Key Message */
.key-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.3);
}

.key-message h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.key-message h4 i {
    color: var(--secondary-color);
}

.key-message p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.key-message p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.sticky-sidebar > div {
    margin-bottom: 25px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.highlights-box {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlights-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list i {
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.quote-box-small {
    background: var(--bg-cream);
    border-right: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.quote-box-small i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.quote-box-small p {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.dedication {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.dedication h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.dedication p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.dedication .small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.prayer-box {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e6 100%);
    border: 2px solid #f687b3;
    border-radius: 12px;
    padding: 25px;
}

.prayer-box h4 {
    color: #d53f8c;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-list {
    list-style: none;
    padding: 0;
}

.prayer-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(246, 135, 179, 0.3);
    color: var(--text-dark);
}

.prayer-list li:last-child {
    border-bottom: none;
}

/* Stories Section */
.stories-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.story-icon i {
    color: white;
    font-size: 1.8rem;
}

.story-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.story-card p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-highlight {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-highlight i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-highlight p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2537 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.blessing {
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-sidebar {
        position: static;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.5rem;
    }
    
    .quote-box p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .intro-box,
    .special-box,
    .concept-card,
    .story-box,
    .practical-box {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .header, .hero, .video-section, .sidebar, .footer {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}