/*
Color Scheme:
    Primary: #1d2c1e (Dark Green)
    Secondary: #ffe99a (Light Yellow)
    Accent: #d46921 (Vibrant Orange)
    Black: #231F20
    White: #EFEEE8




*/

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'Montserrat', sans-serif;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #EFEEE8;
}

#portfolioLanding {
    background-color: #1d2c1e;
    padding-top: 300px;
    padding-bottom: 410px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

#welcomeTextLanding {
    color: #ffe99a;
    font-size: 3em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#descriptionTextLanding {
    display: flex;
    max-width: 200px;
    flex: 1;
    flex-direction: column;
    justify-content: center;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 8px;

    cursor: pointer;

    color: #d46921;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-decoration: none;
    border: 2px solid #d46921;
    border-radius: 7px;

    transition: all 0.3s ease, font-weight 0.2s ease;
}

#descriptionTextLanding:hover {
    flex: 1.5;
    color: #1d2c1e;
    background-color: #d46921;
    border-color: #d46921;
    transform: scale(1.1) rotate(3deg) skewX(2deg);
    font-weight: 600;
}

.sectionSpacerSmall {
    margin: 100px;
}

.sectionSpacerMedium {
    margin: 125px;
}

#contentHeading {
    color: #1d2c1e;
    margin: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 800;
    font-style: oblique;
}

#portfolioHeading {
    display: block;
    background-color: #1d2c1e;
}

#portfolioHeading h1 {
    display: block;
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 150px;
    border-radius: 0.5em;
    background-color: #EFEEE8;
    color: #1d2c1e;
    text-align: center;
    font-size: 5em;
    font-weight: 900;
}

/* Research Section */

.cardsContainer {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 1100px;
    margin: 0 auto;
    margin-bottom: 100px;
    height: 300px;
}

.card {
    flex: 1;
    background-color: #1d2c1e;
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: flex 0.4s ease, background-color 0.3s ease;
}

.card:hover {
    flex: 2.5;
    background-color: #1d2c1e;
}

.cardTitle {
    font-size: 1.3em;
    font-weight: 700;
    color: #ffe99a;
    margin-bottom: 10px;
}

.cardDescription {
    font-size: 0.9em;
    font-weight: 400;
    color: #EFEEE8;
}

.cardDetails {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    margin-top: 0;
}

.card:hover .cardDetails {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.cardDetails p {
    font-size: 0.85em;
    font-weight: 300;
    color: #EFEEE8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1d2c1e;
    color: #EFEEE8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #d46921;
    color: #ffe99a;
}

/* Software Projects Section */

.comingSoon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #ffe99a;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #1d2c1e;
}

/* About Me Section */

.aboutMeSection {
    padding-top: 2em;
    padding-bottom: 40px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #dfddd8;
    border-radius: 5em 5em 0 0;
}

.aboutMeHeader h2 {
    padding-left: 1em;
    color: #1d2c1e;
    font-size: 6em;
    font-weight: 900;
}

.aboutMeText {
    padding-right: 6em;
    padding-top: 1em;
    max-width: 24.5em;
    color: #1d2c1e;
    font-size: 1.2em;
    font-weight: 600;
}

.aboutMeText span {
    color: #d46921;
}

/* Skills */

.skillsSection {
    padding-top: 5em;
    padding-bottom: 5em;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    background-color: #eedfa8;
    box-shadow: 0 -2em 2em #FFF, 0 -2em 2em rgba(255, 255, 255, 0.5);
}

.skillsLeft {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 6em;
    width: 25em;
}

.skillsLeft h3 {
    margin-bottom: 5px;
    color: #1d2c1e;
    font-size: 3em;
    font-weight: 900;
}

.skillsLeft p {
    margin-bottom: 20px;
    color: #1d2c1e;
    font-size: 1.2em;
    font-weight: 600;
    text-align: justify;
    text-indent: 3em;
    line-height: 1;
}

.skillsLeft a {
    height: 25px;
    width: 100%;
    display: flex;
    background-color: #d46921;
    border-radius: 0 0.5em 0.7em 1.5em;
    color: #1d2c1e;
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.skillsLeft a:hover {
    color: #ffffffd8;
    font-weight: 700;
    transform: scale3d(1.1, 1.1, 1.1);
    text-shadow: 0 0 0.2em #fff;
    box-shadow: 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 1em #d46921, 0 0 2em #d46921, 0 0 4em #d46921;
}

.skillsRight {
    margin-right: 2em;
    display: grid;
    grid-template: repeat(6, 50px) / repeat(6, 100px);
    gap: 10px;
}

.skillsRight div {
    display: flex;
    padding-left: 1em;
    background-color: #e8efe8;
    color: #1d2c1e;
    font-size: 1em;
    font-weight: 700;
    line-height: 0.8;
    border-radius: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 0.5em rgba(35, 31, 32, 0.2);
    align-items: center;
}

#animatedCell:hover {
    background-color: #d46921;
    color: #ffffffd8;
    transform: scale(1.05);
    text-shadow: 0 0 0.2em #fff;
    box-shadow: 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 1em #d46921, 0 0 2em #d46921, 0 0 4em #d46921;
}

#emptyCell {
    background: linear-gradient(to right, #e8efe8, #e8efe8, #eedfa8, #eedfa8);
    box-shadow: -0.3em 0 0.2em rgba(35, 31, 32, 0.05);
}

.skillsItem-1, .skillsItem-5, .skillsItem-10 {
    grid-column: 3 / 5;
}

.skillsItem-2, .skillsItem-6, .skillsItem-8, .skillsItem-11 {
    grid-column: span 2;
}

.skillsItem-7 {
    grid-column: 2 / span 2;
}

.skillsItem-3, .skillsItem-12 {
    grid-column: 4 / 6;
}

.skillsItem-4, .skillsItem-9, .skillsItem-13 {
    grid-column: span 1;
}

/* Computer Languages */

.computerLanguagesSection {
    padding-top: 5em;
    padding-bottom: 5em;
    background-color: #8fcc93;
}

.computerLanguagesSection h3 {
    margin-bottom: 5px;
    color: #1d2c1e;
    font-size: 3em;
    font-weight: 900;
    text-align: center;
}

#computerLanguagesDescription {
    margin-top: 0.5em;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    color: #1d2c1e;
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.bubbleContainer {
    margin-top: 3em;
    display: grid;
    grid-template: repeat(1, 90px) / repeat(7, 90px);
    justify-content: center;
    gap: 10px;
}

.bubbleContainer div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #d46921;
    color:#ffe99a;
    font-size: 0.9em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 0 0.5em rgba(35, 31, 32, 0.3);
    transition: all 0.3s ease;
}

.bubbleContainer div:hover {
    background-color: #ffe99a;
    color: #1b5c1e;
    text-shadow: 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.4em rgba(99, 255, 107, 0.8), 0 0 0.8em rgba(99, 255, 107, 0.8), 0 0 1.6em rgba(99, 255, 107, 0.8), 0 0 3.2em rgba(99, 255, 107, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 1em #ffe99a, 0 0 2em #ffe99a, 0 0 4em #ffe99a;
}

.bubbleContainer a {
    text-decoration: none;
    color: inherit;
}

/* Learn More */

.learnMore {
    padding-top: 1em;
    padding-bottom: 3em;
    background-color: #dfddd8;
    color: #1d2c1e;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
}

.learnMore a {
    text-decoration: none;
    color: inherit;
}

/* Footer Blend Section */
.footerBlendBG {
    background-color: #dfddd8;
}

.footerBlend {
    background-color: #dfddd8;
    position: relative;
    margin-left: -0.5em;
    margin-bottom: -0.7em;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18em;
    font-weight: 1000;
    color: #1d2c1e;
    letter-spacing: -0.4em;
    transform: perspective(600px) rotateX(20deg);
    z-index: 0;    
}

/* Contact Section */

.contactSection {
    position: relative;
    background-color: #1d2c1e;
    padding-left: 100px;
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #ffe99a;
    font-size: 1.5em;
    font-weight: 500;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.contactText {
    margin-left: 20px;
}

.callToAction {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 0.83;
}

#emph {
    font-family: 'Story Script', cursive;
    font-size: 1.5em;
    font-weight: 500;
    color: #d46921;
}

.cTADetails {
    margin-top: 30px;
    font-size: 0.8em;
    font-weight: 400;
}

.cTAFoot {
    margin-bottom: 30px;
    font-size: 0.8em;
    font-weight: 400;
}

.contactBtn {
    display: flex;
    width: 150px;
    height: 25px;
    flex: 1;
    flex-direction: column;
    text-align: center;
    justify-content: center;

    margin-top: 30px;
    margin-bottom: 20px;
    padding: 8px;

    cursor: pointer;

    color: #1d2c1e;
    background-color: #d46921;
    font-size: 0.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;

    transition: all 0.3s ease, font-weight 0.1s ease;
}

.contactBtn:hover {
    flex: 1.5;
    transform: scale(1.1) rotate(3deg) skewX(2deg);
    font-weight: 600;
    color: #ffe99a;
}

.contactImage {
    width: 400px;
    height: 400px;
    margin-right: 150px;
}

.rights {
    background-color: #1d2c1e;
    font-family: 'montserrat', sans-serif;
    font-weight: 300;
    font-size: 1em;
    color: #ffe99a;
    text-align: center;
    padding: 5px;
}