/* Index page specific styles */

/* Hero Section Styling */
.hero-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-store-banner {
    max-width: 300px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-store-banner:hover {
    transform: scale(1.05);
}

/* Blog Section Styling */
.blog-section {
    padding: 80px 0;
    background: transparent;
}

.blog-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.blog-post {
    padding: 30px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.blog-post:hover {
    /* Remove visual effects for clean transparent design */
}

.blog-date {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Lead Section */
.features-lead-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F2A007 0%, #F28907 50%, #BF1111 100%);
    color: white;
    text-align: center;
}

.features-lead-section h2 {
    font-weight: 700;
    margin-bottom: 25px;
}

.features-lead-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    gap: 20px;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #44A682;
    border-color: white;
}

.btn-light {
    background: white;
    color: #5C8C14;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px 0;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 30px;
    }

    .app-store-banner {
        margin-top: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 250px;
    }
}