/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

/* Modern Projects Archive */
.projects-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.archive-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #222;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-img {
    width: 100%;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-cats {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.project-excerpt {
    font-size: 1rem;
    color: #555;
}

.visit-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.visit-btn:hover {
    background: #005177;
}

/* Single Project Page */
.single-project .container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.project-detail .project-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.project-detail .project-cats {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.project-detail .project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-detail .project-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.single-project .visit-btn {
    font-size: 1rem;
}
.project-wrapper {
    max-width: 1200px;
    margin: 60px auto;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-content {
    padding: 20px;
}

.project-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.project-btn:hover {
    background: #333;
}
