/* Additional styles for Home page specific components */

/* Hero Section Styles */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 40vh;
}

.hero-badge {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.quick-link-card {
  position: relative;
  z-index: 1;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-link-card:hover {
  position: relative;
  z-index: 1;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

    opacity: 1;
}

.quick-link-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 1rem;
    padding: 1rem;
    margin: 0 auto 1.5rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  position: relative;
  z-index: 1;
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.quick-link-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.quick-link-card h3 {
  position: relative;
  z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-link-card p {
  position: relative;
  z-index: 1;
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-link-btn {
  pointer-events: auto;
  z-index: 10;
  position: relative;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.quick-link-btn:hover {
  pointer-events: auto;
  z-index: 10;
  position: relative;
    background: rgba(255,255,255,0.3);
    transform: translateX(-4px);
}

/* Featured Content Grid */
.featured-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    background: linear-gradient(135deg, #fecaca, #fde68a);
}

.issue-placeholder, .video-placeholder {
    text-align: center;
    color: #6b7280;
}

.issue-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.issue-label, .video-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.play-button {
    background: #dc2626;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.featured-card:hover .play-button {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.featured-content {
    padding: 2rem;
}

.featured-category {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.featured-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-frequency {
    color: #3b82f6;
    font-weight: 500;
}

.featured-actions {
    display: flex;
    gap: 1rem;
}

.featured-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

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

.newsletter-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-card p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background: #fbbf24;
    color: #1f2937;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .quick-link-icon img {
        width: 60px;
        height: 60px;
    }
}



.video-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 10;
}

