/*
 * AILA Tech Bundled CSS File
 * Generated: 2026-01-24 11:15:23
 * 
 * This file combines multiple CSS files into one for better performance.
 * Do not edit directly - edit source files and re-run merge_assets.py
 */


/* ========== blog.css ========== */
/* Blog Page Styles */

.coming-soon-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.coming-soon-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: blogPulse 4s ease-in-out infinite;
}

@keyframes blogPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.blog-coming-soon-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
    margin: 0 auto;
}

.blog-coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: blogFloat 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes blogFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.blog-coming-soon-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.blog-coming-soon-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.blog-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.blog-feature-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.blog-notify-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-notify-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-notify-message {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-notify-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-notify-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
}

.blog-notify-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.blog-notify-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.blog-notify-btn:active {
    transform: translateY(0);
}

.blog-back-link {
    margin-top: 2rem;
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-back-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .blog-coming-soon-icon {
        font-size: 3.5rem;
    }

    .blog-coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-notify-form {
        flex-direction: column;
    }

    .blog-notify-btn {
        width: 100%;
    }
}

