@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Caveat:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    /* Font */
    --heading-primary: "Inter", sans-serif;
    --heading-secondary: "Caveat", cursive;

    --body-primary: "Noto Sans JP", sans-serif;
    /* Font */
    --body-dark: #222222;
    --accent-color: #A8C0D6;
    --accent-dark: #EDEDED;
    --color-bg: #FAFAFA;

    /* Background */
    --color-surface: #EDEDED;

    /* Cards, nav, etc. */
    --color-text: #222222;
    /* Primary text */
    --color-accent: #D6D2C4;
    /* Accent elements like borders, subtle highlights */
    --color-highlight: #A8C0D6;
    /* CTA buttons, links, icons */
}

/* -----------------------

containers

section layouts
h
------------------------ */
body {
    background-color: #e9e9e9;
}


h2 {
    font-family: var(--heading-primary);
}

h3 {
    font-family: var(--heading-secondary);
}

p {
    font-family: var(--body-primary);
}

ul {
    font-family: var(--body-primary);
}

/* Sticky Header */
.site_header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;

}

.site_logo {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #333;

    font-family: var(--heading-secondary);
}



#mobileMenu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

#mobileMenu li a {
    text-decoration: none;
    color: #333;

    font-weight: 200;
    font-family: var(--heading-primary);
    font-size: 1rem;
}

.menu_btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    display: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu_btn {
        display: block;
    }

    #mobileMenu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 1rem 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    #mobileMenu.show {
        display: flex;
    }
}


.container {
    height: auto;
    width: 100%;

    margin: 0;
}

.section_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /**/
    height: fit-content;
    width: 100%;
    /**/
    margin: 1% 0%;
    margin-bottom: 5%;
    flex-basis: 100%;
    /* Prevents vertical scrolling */
}

.examples_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    align-self: center;
    /**/
    flex-grow: 1;
    /* */
    width: 100%;
    max-width: 85%;
    height: fit-content;
    min-height: 35vh;
    /* */
    margin: 0.5%;
}


.content_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /**/
    height: auto;
    /**/
    margin: 0.25% 1%;
}



.list_accent {
    margin-top: 1.5%;
    background: #f8f9fa;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* --- --*/
.overlay_1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 35vh;
}

.overlay_1 img {
    align-self: center;
    max-height: 75%;
    max-width: 98%;
    mask-image: radial-gradient(circle at 25% 5%,
            rgb(255, 255, 255) 10%,
            rgba(55, 55, 55, 0.627) 80%);
    border-radius: 12px;
}

.overlay_3 {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 35vh;
    max-width: 45%;
}

.overlay_5 {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9999;
    top: 30%;
    max-width: fit-content;
    right: 20%;
}

.overlay_5 img {
    align-self: center;
    max-width: 80%;
    mask-image: radial-gradient(circle at 25% 5%,
            rgb(255, 255, 255) 10%,
            rgba(55, 55, 55, 0.627) 80%);
    border-radius: 12px;
}

#rellaxImg {

    max-height: 25%;
    max-width: 98%;
    mask-image: radial-gradient(circle at 25% 5%,
            rgb(255, 255, 255) 10%,
            rgba(55, 55, 55, 0.627) 80%);
    border-radius: 12px;
}

.overlay_3 img {
    align-self: center;
    max-height: 98%;
    max-width: 98%;
    mask-image: radial-gradient(circle at 25% 5%,
            rgb(255, 255, 255) 10%,
            rgba(55, 55, 55, 0.627) 80%);
    border-radius: 12px;
}

.overlay_4 {}

.overlay_4 img {}

.overlay_2 {
    border: 0.5px dashed white;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 35vh;
}

.overlay_2 img {
    align-self: center;
    max-height: 75%;
    max-width: 98%;
    mask-image: radial-gradient(circle at 25% 5%,
            rgb(255, 255, 255) 10%,
            rgba(55, 55, 55, 0.627) 80%);
    border-radius: 12px;
}

/* -----------------------

hero section

------------------------ */
.hero {
    background-image: url('https://images.unsplash.com/photo-1532637644947-13094c2745f1?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    /* */
    position: relative;
    z-index: 8000;
    /* */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* */
    flex-basis: 100%;
    text-align: center;
    /* */
    padding-top: 0;
    padding-bottom: 0%;
    margin-bottom: 0vh;
    width: 100%;
    filter: contrast(85%);
    /**/
    height: 100vh;

}

#hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 500px;
    padding: 2rem 1rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero_content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 650px;
    padding: 1rem;
}

.hero_title {
    margin-bottom: 1rem;
}

.hero_title h2,
.hero_title h3 {
    margin: 0;
}

.hero_title h2 {
    color: #2d2d2d;

    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero_title h3 {
    color: #2d2d2d;

    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.hero_text {
    margin-bottom: 1rem;
    /* or padding-bottom */
}

.hero_text p {
    color: #2d2d2d;

    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 0.5rem;
}

.hero_image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.hero_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero_img {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-top-left-radius: 40px;
    position: relative;
}

.hero_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #ebebeba4 70%, rgba(24, 24, 24, 0) 100%);
    z-index: 2;
    pointer-events: none;
    border-top-left-radius: 50px;
    /* match corner */
}

.hero_img img {
    width: 100%;
    height: 99%;
    object-fit: cover;
    object-position: right center;
    /* key for right-side bias */
    display: block;

}

.hero_img.right-aligned {
    max-width: 98%;
    margin-left: auto;
    /* pushes to the right */

    overflow: hidden;
    border-radius: 12px;
}

.hero_img.right-aligned img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}



.experience_section {
    padding: 4rem 1.5rem;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience_section .section_title {
    text-align: center;
    margin-bottom: 2rem;
}

.section_title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;

}

.section_title h3 {

    font-size: 1.5rem;
    color: #555;
    font-weight: 400;
}

.experience_intro {
    max-width: 700px;
    text-align: center;
    margin-bottom: 3rem;
}

.experience_intro p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #333;

}

.experience_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
}

.info_card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 1.75rem 1.5rem;
    flex: 1 1 300px;
    max-width: 350px;
    transition: box-shadow 0.3s ease;
}

.info_card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card_header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info_card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #444;

}

/* ===== General Section Styling ===== */
.content_section {
    padding: 4rem 1.5rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.section_title.md h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    text-align: center;

}



.section_title.md h3,
.section_title.section_text p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #555;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.section_title.secondary_title h2 {
    font-family: var(--heading-primary);
    color: #333;
}

.section_title.secondary_title h3 {
    font-family: var(--heading-primary);
    color: #333;
    font-size: 1.75rem;
}

.section_text.md p {
    font-weight: 300;
    font-size: 1.15rem;
}

/* ===== Project Grid Layout ===== */
.project_list,
.projects_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
    max-width: 1200px;
}

/* ===== Project Cards (both app and static) ===== */
.project_block,
.project_card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project_block:hover,
.project_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===== Titles & Icons ===== */
.project_title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.project_title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;

}

.branding_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project_icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ===== Descriptions & Links ===== */
.project_description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project_url,
.project_link {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: #007acc;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
}

.project_url i,
.project_link i {
    font-size: 0.85rem;
}

/* ===== Highlights (for static site bullets) ===== */
.project_highlights {
    margin-top: 1rem;
    padding-left: 1.25rem;
    list-style-type: disc;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.skills_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.skills_group {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.skills_group h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;

}

.skills_group ul {
    padding-left: 1.25rem;
    list-style-type: disc;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.skills_group ul li {
    list-style-type: circle;

}

.branding_content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

.branding_text {
    flex: 1 1 50%;
}

.branding_image {
    flex: 1 1 40%;
    text-align: right;
}

.branding_image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.branding_image img:hover {
    transform: scale(1.02);
}

.branding_image .project_url {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
}

.branding_image .project_url i {
    margin-right: 0.35rem;
}


.branding_image {
    margin: 1rem 0;
    text-align: center;
}

.branding_image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Values List */
.values_list {
    list-style-type: disc;
    padding-left: 2rem;
    max-width: 750px;
    margin: 1rem auto 3rem auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Data Projects */
.data_projects_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.data_card {
    background-color: #f9f9f9;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 460px;
    width: 100%;
    transition: transform 0.2s ease;
}

.data_card:hover {
    transform: translateY(-4px);
}

.data_card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #111;
    font-family: 'Playfair Display', serif;
}

.data_card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}


footer#contact {
    padding: 3rem 1.5rem;
    background: #f3f3f3;
    text-align: center;
}

.footer_title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;

}

.footer_title p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;

}

.footer_social a {
    margin: 0 1rem;
    transition: transform 0.2s;
}

.footer_social a:hover {
    transform: scale(1.1);
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .project_title {
        flex-direction: column;
        align-items: flex-start;
    }

    .project_icon {
        width: 28px;
        height: 28px;
    }

    .project_title h2 {
        font-size: 1.15rem;
    }
}



@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero_content, .hero_image {
        max-width: 100%;
        padding: 0.5rem;
    }

    .hero_title h2 {
        font-size: 2.25rem;
    }

    .hero_title h3 {
        font-size: 1.25rem;
    }

    .hero_text p {
        font-size: 1rem;
    }
}