/* /////---  VARS  ---///// */

:root {
    --col-dark-1: #0d1007;
    --col-dark-1-trans: rgba(23, 30, 7, 0.8);
    --col-main-1: rgba(153,186,77,1);
    --col-main-2: rgba(186,77,98,1);
    --col-bright-1: #eaf2ddc3;
    --col-bright-2: #eaf2dd8e;
    --col-bright-3: #eaf2ddf5;
    --col-bright-4: #ffffff5a;
    --navbar-top: 30px;
    --navbar-height: 50px;
    --ham-menu-height: 225px;
    --full-nav-height: 275px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.inter-ebold-italic {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: italic;
}

.inter-ebold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.inter-elight-italic {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

/* /////---  VARS  ---///// END */

html {
    scroll-behavior: smooth;
    min-width: 360px;
    width: 100%;
}

body {
    margin: 0;
    min-width: 360px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    background:
        var(--col-main-1)
        linear-gradient(to right, transparent 50%, var(--col-main-2) 100%);

    /* background: linear-gradient(90deg, var(--col-main-1) 50%, var(--col-main-2) 100%); */
     /* radial-gradient(farthest-side at top left,
     var(--col-main-1) 60%,transparent), */
}

#main-container {
    width: 100%;
    transition: all 0.8s;
}

.sub-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center; /* Aligns horizontally */
    align-items: center;
}

.section-container {
    /* animation-duration: 1.5s;
    animation-name: animate-fade;
    animation-delay: 0.3s;
    animation-fill-mode: backwards; */

    margin-top: 70px;
    margin-bottom: 70px;
}

.horizontal-sep {
    width: 100%;
    min-height: 10px;
    height: 10px;
    background-color: var(--col-dark-1);
    border-radius: 3px;
}

/* /////  INTRO SECTION  ///// */

#intro-section {
    /* min-height: 500px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#intro-left {
    /* width: 300px; */
    /* min-width: 300px; */
    display: flex;
    flex-direction: column;
    font-size: 5.5em;
    color: var(--col-dark-1);
    padding: 0 30px 0 0;
}

#intro-sep {
    width: 10px;
    min-width: 10px;
    height: 275px;
    background-color: var(--col-dark-1);
    border-radius: 3px;
    transition: height 1.5s;
}

#intro-right {
    /* width: 310px; */
    /* min-width: 310px; */
    display: flex;
    flex-direction: column;
    font-size: 2.3em;
    color: var(--col-dark-1);
    padding: 0 0 0 30px;
}

/* /////  INTRO SECTION  ///// END */


/* /////  PROJECTS SECTION  ///// */

#projects-section {
    min-height: 500px;
    padding-top: 40px;
    width: 70%;
    transition: width 1s;
    max-width: 900px;

}

#projects-section h2 {
    font-size: 35px;
    margin: 10px 0 10px 0;
}

.project {
    padding: 10px 20px;
    margin: 30px 0;
    background-color: var(--col-bright-1);
    opacity: 0.9;
    border-radius: 10px;

    -webkit-box-shadow: 6px 6px 6px 0px var(--col-dark-1);
    -moz-box-shadow: 6px 6px 6px 0px var(--col-dark-1);
    box-shadow: 6px 6px 6px 0px var(--col-dark-1);
}

.project:hover {
    background-color: var(--col-bright-2);
}

.project p {
    max-width: 70%;
}

#project-top {
    display: flex;
    justify-content: space-between;
}

#project-top img {
    margin-left: 10px;
    height: 40px;
}


/* /////  PROJECTS SECTION  ///// END */


/* /////  SKILLS SECTION  ///// */

#skills-left {
    min-height: 200px;
    width: 200px;
}

#skills-sep {
    width: 5px;
    min-width: 5px;
    height: auto;
    background-color: var(--col-dark-1);
    border-radius: 3px;
    margin-left: 10px;
    margin-right: 30px;
}

#skills-left nav a {
    color: var(--col-dark-1);
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 25px;
    float: right

}

/* /////  SKILLS SECTION  ///// END */


/* /////  NAVBAR  ///// */

#navbar-container {
    position: fixed;
    z-index: 900;
    top: var(--navbar-top);
    left: 5%;
    right: 5%;
    border-radius: 10px;
    height: var(--navbar-height);
    background: var(--col-dark-1-trans);
    filter: drop-shadow(3px 3px 6px var(--col-dark-1));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: height 0.6s ease;
    /* border: 0.1em solid var(--col-bright-4); */
}

#navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

#navbar-logo {
    min-width: 230px;
    font-size: 1.5em;
    color: var(--col-main-2);
    padding-left: 20px;
    text-decoration: none;
}

#navbar {
    transition: opacity 0.8s;
    width: 300px;
    line-height: var(--navbar-height);
    text-align: center;
    display: block;
}

#navbar a {
    color: var(--col-bright-3);
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.1em;
}

#navbar a:hover {
    color: var(--col-bright-2);
}

#hamburger-icon {
    font-size: 30px;
    cursor: pointer;
    padding: 40px 20px;
    display: none;
    color: var(--col-bright-1);
}

#ham-nav-menu {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.6s ease;
}

#ham-nav-menu ul {
    list-style: none;
    padding-left: 20px;
}

#ham-nav-menu ul :hover {
    color: var(--col-bright-2);
}

#ham-nav-menu li {
    padding-bottom: 15px;
}

#ham-nav-menu li a {
    font-size: 2.3em;
    color: var(--col-bright-1);
}


/* /////  NAVBAR  ///// END */


/* /////  FOOTER  ///// */

footer {
    margin-top: 50px;
    padding: 20px 0 0 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: var(--col-dark-1);
}

footer h2 {
    display: inline-block;
    color: var(--col-main-2);
    border-bottom: 4px solid var(--col-main-2);
}

#footer-menu {
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: center;
}

.footer-menu-elem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 100px;
    padding: 0 20px;
}

.footer-menu-elem img {
    height: inherit;
}

.footer-menu-elem a {
    color: var(--col-bright-3);
    text-decoration: none;
    padding-right: 8px;
}

.footer-menu-elem :hover {
    color: var(--col-bright-2);
}

#copyright {
    padding: 10px 0;
    background-color: var(--col-dark-1);
    color: var(--col-bright-1);
    font-size: 0.8em;
    border-top: 2px solid var(--col-bright-1);
}

/* /////  FOOTER  ///// END */
