/* Cute and Simple Home Design */
.content-area {
    padding: 2rem;
    margin-left: 270px;
    background: #fff;
}

/* Welcome Section */
.welcome {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.welcome h1 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.welcome p {
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-details {
    padding: 1.5rem;
}

.category-details h3 {
    color: #2d3436;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-details i {
    color: #0984e3;
}

.category-details p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Quick Links */
.quick-links {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.quick-links h2 {
    color: #2d3436;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.quick-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #2d3436;
    transition: background-color 0.3s ease;
    gap: 0.75rem;
}

.quick-link:hover {
    background: #e3f2fd;
}

.quick-link i {
    color: #0984e3;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-area {
        margin-left: 0;
        padding: 1rem;
    }
    
    .welcome {
        padding: 2rem 1rem;
    }
    
    .welcome h1 {
        font-size: 2rem;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
}
