/* Page: home.blade.php */

/* Hero Banner Section */
    .hero-banner {
        background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(21, 27, 46, 0.95));
        border: 3px solid;
        border-image: linear-gradient(135deg, #ffd700, #ff8c00) 1;
        border-radius: 20px;
        padding: 4rem 2rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(239, 27, 27, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 50%),
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.03) 20px
            );
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-banner.has-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-banner.has-image::before {
        display: none;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        width: 100%;
        padding: 2rem;
    }
    
    .hero-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .hero-title {
        font-size: 4rem;
        font-weight: 900;
        color: white;
        text-shadow: 
            3px 3px 0px #ef4444,
            6px 6px 10px rgba(0, 0, 0, 0.8);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.95);
        display: block;
    }
    
    .hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        display: block;
        line-height: 1.8;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-btn-white {
        background: white;
        color: var(--dark-bg);
    }
    
    .hero-btn-white:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        color: var(--dark-bg);
    }
    
    .hero-btn-purple {
        background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
        color: white;
    }
    
    .hero-btn-purple:hover {
        background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(185, 28, 28, 0.4);
        color: white;
    }
    
    /* Categories Section - Improved Design */
    .categories-section {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-white);
        text-align: center;
        margin-bottom: 3rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .section-title i {
        color: var(--accent-red);
        font-size: 2rem;
    }
    
    .category-card {
        background: var(--dark-nav);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .category-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: #ef4444;
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
    }
    
    .category-banner {
        position: relative;
        height: 200px;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(255, 140, 0, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .category-banner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
    }
    
    .category-card:hover .category-banner img {
        transform: scale(1.05);
    }
    
    .category-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    }
    
    .category-content {
        padding: 1.5rem 1.25rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        background: var(--dark-nav);
    }
    
    .category-title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        line-height: 1.3;
    }
    
    .category-description {
        color: var(--text-light);
        margin-bottom: 1rem;
        flex-grow: 1;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .category-info {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        padding-top: 0.75rem;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .category-count {
        color: var(--accent-red);
        font-weight: 700;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .category-count i {
        font-size: 1.1rem;
    }
    
    .category-btn {
        width: 100%;
        background: linear-gradient(135deg, #ef4444, #dc2626);
        border: 2px solid #ffd700;
        border-radius: 8px;
        padding: 10px 16px;
        font-weight: 700;
        font-size: 0.875rem;
        color: white;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s;
        display: block;
        letter-spacing: 0.3px;
        box-shadow: 0 3px 12px rgba(239, 68, 68, 0.3);
    }
    
    .category-btn:hover {
        background: linear-gradient(135deg, #dc2626, #ef4444);
        border-color: #ffed4e;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
        color: white;
    }
    
    .category-btn:active {
        transform: translateY(0);
    }
    
    /* Empty State for Categories */
    .categories-empty {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--dark-nav);
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .categories-empty i {
        font-size: 5rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
        opacity: 0.5;
    }
    
    .categories-empty h3 {
        color: var(--text-white);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .categories-empty p {
        color: var(--text-light);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .hero-buttons {
            flex-direction: column;
        }
        
        .hero-btn {
            width: 100%;
            justify-content: center;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .section-title i {
            font-size: 1.75rem;
        }
        
        .category-banner {
            height: 180px;
        }
        
        .category-title {
            font-size: 0.9rem;
        }
        
        .category-content {
            padding: 1.25rem 1rem;
        }
        
        .category-btn {
            padding: 8px 14px;
            font-size: 0.8rem;
        }
        
        .category-card {
            margin-bottom: 1.5rem;
        }
        
        .categories-section .row {
            margin: 0;
        }
        
        .categories-section .col-md-6 {
            padding: 0 0.5rem;
        }
        
        .hero-banner {
            padding: 2rem 1rem;
            min-height: 300px;
        }
        
        .hero-banner.has-image {
            min-height: auto;
            padding: 0;
            height: auto;
            min-height: 200px;
            max-height: 500px;
            background-size: contain;
            background-position: center top;
            background-repeat: no-repeat;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
        
        .hero-banner.has-image .hero-content {
            display: none;
        }
    }

.popup-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-notification-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.popup-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.popup-notification-content {
    padding: 1.5rem;
}

.popup-item {
    margin-bottom: 1rem;
}

.popup-item:last-child {
    margin-bottom: 0;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.popup-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #ffd700;
}

.popup-button:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    color: white;
}

.popup-notification-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.popup-btn-close,
.popup-btn-disable {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-btn-close {
    background: #f0f0f0;
    color: #888;
}

.popup-btn-close:hover {
    background: #e0e0e0;
}

.popup-btn-disable {
    background: #ff6b6b;
    color: white;
}

.popup-btn-disable:hover {
    background: #ff5252;
}
