/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #222;
    background: #fff;
    line-height: 1.6;
}

/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
//#APP_FILES#heading.css
/* ================= BANNER ================= */
.page-banner {
    height: 260px;
    background: url("https://via.placeholder.com/1600x500") center / cover no-repeat;
    position: relative;
}

.banner-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.banner-overlay h1 {
    font-size: 36px;
    margin-bottom: 6px;
}

.banner-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ================= FILTERS ================= */
.filters {
    display: flex;
    gap: 15px;
    padding: 50px 0 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    background: #f1f1f1;
    cursor: pointer;
    font-weight: 500;
}

.filter-btn.active {
    background: #f9a825;
    color: #fff;
}

/* ================= PROJECT GRID ================= */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.project-card {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.project-card img {
    width: 100%;
    display: block;
}

.project-card h4 {
    padding: 15px;
    font-size: 16px;
}

.project-card:hover {
    transform: translateY(-6px);
}

/* ================= FOOTER ================= */
/* #APP_FILES#footer.css */
/* ================= RESPONSIVE ================= */

/* TABLET & MOBILE */
@media (max-width: 768px) {

    /* NAVIGATION */
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 6px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* LOGO */
   .logo img {
    height: 40px;
}

    /* BANNER */
    .page-banner {
        height: 200px;
    }

    .banner-overlay {
        padding: 0 6%;
        text-align: center;
    }

    .banner-overlay h1 {
        font-size: 28px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .container {
        width: 95%;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .project-card h4 {
        font-size: 15px;
    }
}
