@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* outline: 1px solid red; */
}

:root {
    --cream: #c43670;
    --cream-card: #ffffff;
    --dark: #1a1a1a;
    --text: #f0ccdf;
    --muted: #777;
    --blue: #4d6bfe;
    --blue-light: #eef0ff;
    --font: 'DM Sans', sans-serif;
    /* New variables */
    --btn-text-pink: #f0ccdf;
    --new-card-bg-color: #BAD6DA;
    --new-card-text-color: #1A4A4A;
}

/* Utiility Classes */
.mx-normal {
    margin: 48px 0;
}

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    /* color: inherit; */
    /* color: #c43670; */
}


/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 46px 128px;
}


.cta-btn a {
    background-color: #EFCCDF;
    color: #C43670;
    font-size: 24px;
    padding: 16px 25px;
    letter-spacing: 1.5px;
    border-radius: 32px;
}

/* HERO */
.hero {
    width: 100%;
    /* margin: 56px auto 52px; */
    padding: 0 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-text h1 strong {
    font-weight: 700;
}

.hero-desc {
    /* font-size: 16px; */
    color: var(--text);
    line-height: 1.65;
    /* max-width: 280px; */
    margin-bottom: 22px;
}

.hero-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid #d0d0c8;
    border-radius: 7px;
    color: var(--text);
    transition: border-color .2s, background .2s;
}

.hero-icons a:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.hero-photo {
    width: 285px;
    height: 285px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--text);
}

.hero-photo-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #e8d5cc 0%, #c9b5af 50%, #d4b8b0 100%); */
    background-image: url(./assets/Myprofilepic.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* PROJECT CARDS */

.d-none-mobile {
    display: block;
}

/* CASE STUDIES */
.casestudies {
    width: 90%;
    margin: 48px auto;
    font-family: "Arimo", sans-serif;
    padding: 128px 0;
}

.card {
    background: #A5C572;
    text-align: center;
    padding: 20px;
    font-family: "Ubuntu", sans-serif;
    border-radius: 40px;

}

.casestudy-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.app-mockups-banner {}

.app-mockups-banner img {
    height: 400px;
}

.app-type-pills {
    display: block;
    margin: 16px 0;

}

.app-type-pills span {
    background: #E0EAD0;
    padding: 8px 16px;
    /* margin-: 8px; */
    border-radius: 24px;
    margin-right: 8px;
}

.app-info {
    margin: 40px 0;
}

.app-type {
    color: #3D7337;
}

.app-name {
    font-size: 3em;
    color: #3D7337;
    font-weight: 900;
}

.app-description h4 {
    color: #3D7337;
}

.app-description p {
    letter-spacing: 1px;
    font-weight: 500;
    color: #3D7337;
    text-align: center;
}

.btn-case {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    /* margin-bottom: 40px; */
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    transition: opacity .2s;
}

.btn-case:hover {
    opacity: .8;
}

.btn-case::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
}


/* FOOTER */
footer {
    background-color: #F5F5F4;
    padding: 128px 16px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 80%;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 3em;
    color: rgb(196, 54, 112);
}

.footer-col ul {}

.footer-col ul a {
    font-weight: 600;
    font-size: 22.9373px;
    color: rgb(196, 54, 112);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgb(196, 54, 112);
    width: 80%;
    margin: 0 auto;
}

.footer-bottom span {
    font-weight: 500;
    color: rgb(196, 54, 112);
}

/* Mobile Screens */
@media screen and (max-width:768px) {

    /* Utility classes */
    .mx-normal {
        margin: 48px 0;
    }

    .d-none-mobile {
        display: none;
    }

    /* NAV */
    /* NAV */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }

    .logo-placeholder img {
        width: 80px;
        height: 80px;
    }

    .cta-btn a {
        background-color: #EFCCDF;
        color: #C43670;
        font-size: 16px;
        padding: 8px 16px;
        letter-spacing: 1.5px;
        border-radius: 32px;
    }

    /* HERO */
    .hero {
        width: 100%;
        margin: 0;
        padding: 48px 0 0 0;
        display: block;
        text-align: center;
    }

    .hero-text {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5em;
        font-weight: 400;
        line-height: 1.25;
        margin-bottom: 14px;
        font-family: "Instrument Sans", sans-serif;
    }

    .hero-text h1 strong {
        font-weight: 700;
    }

    .hero-desc {
        font-size: 16px;
        color: var(--text);
        line-height: 1.65;
        /* max-width: 280px; */
        margin-bottom: 11px;
        font-family: "Instrument Sans", sans-serif;
    }

    .hero-icons {
        display: none;
    }

    .hero-icons a {
        display: none;
    }

    .hero-icons a:hover {
        border-color: var(--blue);
        background: var(--blue-light);
    }

    .hero-photo {
        width: 285px;
        height: 285px;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
        border: 3px solid var(--text);
        margin: 24px auto;
    }

    .hero-photo-placeholder {
        width: 100%;
        height: 100%;
        /* background: linear-gradient(135deg, #e8d5cc 0%, #c9b5af 50%, #d4b8b0 100%); */
        background-image: url(./assets/Myprofilepic.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* CASE STUDIES */
    .casestudies {
        width: 90%;
        margin: 24px auto;
        padding: 48px 0;
        font-family: "Arimo", sans-serif;
    }

    .card {
        background: #A5C572;
        text-align: center;
        padding: 20px;
        font-family: "Ubuntu", sans-serif;
        border-radius: 20px;

    }

    .casestudy-info {
        display: block;
    }

    .app-mockups-banner {}

    .app-mockups-banner img {
        height: 200px;
    }

    .app-type-pills {
        display: flex;
        /* margin-bottom: 40px; */
        justify-content: flex-start;
        align-items: center;
        margin: 8px 0;
    }

    .app-type-pills span {
        background: #E0EAD0;
        padding: 8px 16px;
        /* margin-: 8px; */
        border-radius: 24px;
        margin-right: 8px;
    }

    .app-info {
        margin: 40px 0;
    }

    .app-type {
        color: #3D7337;
    }

    .app-name {
        font-size: 3em;
        color: #3D7337;
        font-weight: 900;
    }

    .app-description h4 {
        color: #3D7337;
    }

    .app-description p {
        letter-spacing: 1px;
        font-weight: 500;
        color: #3D7337;
    }

    /* FOOTER */
    footer {
        padding: 48px 16px;
    }

    .footer-grid {
        display: block;
        width: 100%;
        margin: 0;
    }

    .footer-col h4 {
        font-size: 3em;
        color: rgb(196, 54, 112);
    }

    .footer-col ul {}

    .footer-col ul a {
        font-weight: 600;
        font-size: 1.5em;
        color: rgb(196, 54, 112);
    }

    .footer-bottom {
        display: block;
        /* padding-top: 20px; */
        border-top: 1px solid rgb(196, 54, 112);
        width: 100%;
        margin: auto 16px;
    }


    .footer-bottom span {
        font-weight: 500;
        color: rgb(196, 54, 112);
    }
}