/* Non-Critical CSS - Below the fold styles */

/* Submit Button Animations */
.submit-slogan-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    border: 2px solid transparent;
}

.submit-slogan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-slogan-btn:hover::before {
    left: 100%;
}

.submit-slogan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Nav Hover Effects */
.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.nav-link.active {
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    font-weight: 600;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.1));
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-count {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    margin-top: 5px;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: #dbeafe;
    color: #2563eb;
}

/* Featured Slogans */
.featured {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.slogans-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.slogan-item {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slogan-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #2563eb, #1d4ed8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slogan-item:hover::before {
    opacity: 1;
}

.slogan-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.slogan-content {
    padding: 1.5rem;
}

.slogan-text {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: 600;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tags Section */
.tags-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #4b5563;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.tag:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 4px solid #2563eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #60a5fa;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 0.5rem;
}

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

.footer-column h5 {
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #334155;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-column a:hover {
    color: #60a5fa;
    padding-left: 0.5rem;
    background: rgba(96, 165, 250, 0.1);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .category-card {
        min-height: 120px;
        padding: 1.25rem 0.75rem;
    }
    
    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-title {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
        color: #1e293b !important;
    }
    
    .category-count {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 479px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .category-card {
        min-height: 110px;
        padding: 1rem 0.5rem;
    }
    
    .category-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .category-title {
        font-size: 1.25rem;
        margin-bottom: 0.3rem;
        color: #1e293b !important;
    }
    
    .category-count {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: left;
    }
} 