@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* Blog Specific Styles */

.blog-hero {
    padding: 560px 0 80px;
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 50%, #FFE6F0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
}

.blog-hero .hero-logo {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 20px;
}

.blog-hero .hero-logo-img {
    max-width: 200px;
    height: auto;
    width: 100%;
}

.blog-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-hero .hero-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.blog-hero .hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.blog-main {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 90, 159, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 90, 159, 0.2);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: #8B5A9F;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-category,
.blog-date {
    background: #E2C4FF;
    color: #8B5A9F;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B5A9F, #D196E0);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 159, 0.3);
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(3px);
}

/* Blog Post Pages */
.blog-post-hero {
    background: linear-gradient(135deg, #E2C4FF 0%, #D196E0 100%);
    color: white;
    text-align: center;
    padding: 13rem 0 4rem 0; /* Further increased top padding for header */
    margin-top: 0;
}

.blog-post-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem 2rem; /* Reset top padding, now handled by header */
    line-height: 1.8;
}

.blog-post-image {
    text-align: center;
    margin: 2rem 0;
}

.blog-post-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 90, 159, 0.2);
}

.blog-post-content h2 {
    color: #8B5A9F;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-post-content h3 {
    color: #8B5A9F;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.blog-post-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #D196E0;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.blog-post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.blog-navigation {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.blog-nav-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B5A9F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #D196E0;
    transform: translateX(-3px);
}

.back-to-blog::before {
    content: '←';
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero .hero-logo-img {
        max-width: 150px;
    }
    .blog-hero .hero-content {
        padding: 0 20px;
    }
    
    .blog-hero .hero-text h1 {
        font-size: 2.4rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .blog-hero .hero-text p,
    .blog-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .blog-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* .blog-grid mobile override removed to restore multi-column layout */
    
    .blog-card {
        margin: 0;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-meta {
        gap: 0.5rem;
    }
    
    .blog-post-hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-content {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .blog-nav-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .blog-hero .hero-logo-img {
        max-width: 120px;
    }
    
    .blog-hero .hero-content {
        padding: 0 15px;
    }
    
    .blog-hero .hero-text h1 {
        font-size: 2rem;
        white-space: normal;
        line-height: 1.1;
    }
    
    .blog-post-hero h1 {
        font-size: 1.6rem;
    }
    
    .blog-content h2 {
        font-size: 1.2rem;
    }
}

/* Video Showcase Styles */
.video-showcase {
    margin: 3rem 0;
}

.video-month {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8B5A9F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-month:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-month.special-edition {
    background: linear-gradient(135deg, #FFE6F0 0%, #E2C4FF 100%);
    border-left-color: #D196E0;
}

.video-month h3 {
    color: #8B5A9F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-month h3 i {
    color: #D196E0;
}

.video-links p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.video-link {
    background: #8B5A9F;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin: 0.2rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.video-link:hover {
    background: #D196E0;
    text-decoration: none;
    color: white;
}

.recipe-link {
    font-style: italic;
    margin-left: 0.5rem;
}

.recipe-link a {
    color: #8B5A9F;
    text-decoration: underline;
}

.recipe-link a:hover {
    color: #D196E0;
}

.testimonial-highlight {
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.testimonial-highlight blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-highlight cite {
    display: block;
    margin-top: 1rem;
    color: #8B5A9F;
    font-weight: 600;
}

.call-to-action {
    background: #8B5A9F;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h3 {
    color: white;
    margin-bottom: 1rem;
}

.call-to-action p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.call-to-action .btn {
    background: white;
    color: #8B5A9F;
    border: 2px solid white;
}

.call-to-action .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Download Links Styling */
.download-link {
    color: #8B5A9F;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: #D196E0;
    text-decoration: none;
    background-color: rgba(139, 90, 159, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Donation Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #8B5A9F;
    font-size: 1.3rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #8B5A9F;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-card:hover {
    border-color: #8B5A9F;
    background: #f9f7fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 159, 0.15);
}

.payment-method-icon {
    font-size: 2rem;
    margin-right: 16px;
    width: 60px;
    text-align: center;
}

.payment-method-icon .fa-paypal {
    color: #003087;
}

.payment-method-icon .fa-venmo {
    color: #3D95CE;
}

.payment-method-icon .fa-dollar-sign {
    color: #00D632;
}

.payment-method-info h4 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 1.1rem;
}

.payment-method-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.venmo-fallback {
    background: #3D95CE;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .payment-method-card {
        padding: 12px;
    }
    
    .payment-method-icon {
        font-size: 1.5rem;
        width: 50px;
        margin-right: 12px;
    }
    
    .payment-method-info h4 {
        font-size: 1rem;
    }
    
    .payment-method-info p {
        font-size: 0.8rem;
    }
}
