/* ============================================
   ABOUT PAGE 
============================================ */

/* SITE CONTAINER */
#site-main {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px 60px;
}

#home-main {
    display: flex;
    flex-direction: column; /* STACK ELEMENTS VERTICALLY */
    justify-content: center;
    align-items: center;

    min-height: calc(100vh - 150px);
    background: #111;
    padding: 40px 20px;
    gap: 40px;  /* optional spacing between title + photo */
}


/* ========================
   HOME HERO SECTION
======================== */

.home-hero {
    text-align: center;
}

.home-title {
    font-family: "Monument Extended", sans-serif;
    font-size: 86px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
}

/* ========================
   PHOTO
======================== */

.about-photo-section {
    margin-top: 40px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 75vw;
    height: 500px;
    object-fit: cover;      
    object-position: center; 

    display: block;
}

/* ==========================
   HOME PAGE — BOTTOM SECTION
========================== */

.home-bottom-section {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 80px;
}

.home-tagline {
    font-family: "Monument Extended", sans-serif;
    color: white;
    font-size: 64px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.3;
}

.home-tagline.small {
    font-size: 34px;
    margin-bottom: 60px;
}

.home-softwares {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.home-softwares img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.25s ease;
}

.home-softwares img:hover {
    opacity: 1;
    transform: translateY(-6px);
}

/* ========== FEATURED PROJECTS ========== */

.featured-section {
    padding: 80px 20px 100px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 40px;
    gap: 40px;
}

.featured-title {
    font-family: "Monument Extended", sans-serif;
    font-size: 40px;
    text-transform: uppercase;
}

.featured-text {
    font-family: "Clash Grotesk", sans-serif;
    font-size: 16px;
    color: #d0d0d0;
    max-width: 320px;
}

/* grid */

.featured-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.project-card {
    background: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.25s ease;
}

.project-card:hover {
    border-color: #82d199;
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
}

.project-image {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.project-name {
    font-family: "Monument Extended", sans-serif;
    font-size: 16px;
    margin: 14px 18px 4px;
}

.project-meta {
    font-family: "Clash Grotesk", sans-serif;
    font-size: 14px;
    color: #c0c0c0;
    margin: 0 18px 14px;
}

/* ===========================
   BOTTOM CTA SECTION
=========================== */

.cta-section {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 200px;
}

.cta-divider {
    width: 90%;
    border: none;
    border-top: 1px solid #3a3a3a;
    margin: 0 auto 60px;
    padding-bottom: 80px;
}

.cta-title {
    font-family: "Monument Extended", sans-serif;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1;

    margin-bottom: 50px;
}

.cta-button {
    width: 100%;
    height: 70px;
    background: #ffffff;
    color: #111;
    font-family: "Monument Extended", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;    
    border: 0;
    border-radius: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .35s ease, filter .35s ease, box-shadow .35s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(.95);
    box-shadow: 0 10px 20px rgba(0,0,0,.25);

    background: #111;
    color: #f2f2f2;
    border: 2px solid #f2f2f2;
}



/* ===============================
   MOBILE LAYOUT FIXES
=============================== */
@media (max-width: 768px) {

    /* HEADER FIXES */
    .header-left {
        display: none;
    }

    .header-center img {
        width: 120px;
        height: auto;
    }

    .site-header {
        justify-content: space-between;
        padding: 16px 16px;
    }

    .header-center {
        padding-left: 0;   
    }

    .burger-btn {
        padding-right: 0;  
    }

    /* HOME HERO TEXT */
    .home-title {
        font-size: 34px !important;
        letter-spacing: 2px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        margin-top: 10px !important;
    }

    /* FEATURED SECTION */
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }

    /* TAGLINES */
    .home-tagline {
        font-size: 20px !important;
    }

    .home-tagline.small {
        font-size: 16px !important;
    }

    /* SOFTWARE ICONS */
    .home-softwares {
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center !important;
        padding-bottom: 40px;
    }

    .home-softwares img {
        width: 48px !important;
        height: 48px !important;
    }

    /* CTA SECTION */
    .cta-divider {
        width: 100%;
        margin: 40px auto;
        padding-bottom: 40px;
    }

    .cta-title {
        font-size: 38px !important;
        line-height: 1.1 !important;
        margin-bottom: 30px;
    }

    .cta-button {
        height: 60px !important;
        font-size: 18px !important;
        width: 100% !important;
        border-radius: 20px !important;
    }

    /* NAV */
    .nav-inner {
        padding: 100px 20px 32px;
    }

    .nav-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
