/* FONT */
body {
    background-color: grey;
    margin: 0;
    padding: 0;
    font-family: "Iceberg", Arial, sans-serif !important;
}

.header {
    font-family: "Iceberg", Arial, sans-serif !important;
}


/* NAVBAR */
.custom-menu {
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: black;
}

.custom-menu .item {
    font-size: 1.5em;
    padding: 10px;
    color: white;
}

.custom-menu .right.menu {
    margin-left: auto;
}

/* WELCOME */
.welcome {
    height: 40em;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TEXT BOX */
.textBox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid black;
    border-image: linear-gradient(to right, transparent, black, transparent) 1;
}

h1 { font-size: 4em; font-family: "Iceberg", Arial, sans-serif !important;}
h2 { font-size: 3em; font-family: "Iceberg", Arial, sans-serif !important; padding-top: 70px !important; }
h3 { font-size: 2em; font-family: "Iceberg", Arial, sans-serif !important; padding-top: 10px !important; }

/* ANGLED SECTIONS */
.highlights {
    background-color: white;
    clip-path: polygon(0 120px, 100% 0, 100% calc(100% - 120px), 0% 100%);
}

.skills {
    background-color: white;
    clip-path: polygon(0 0px, 100% 120px, 100% 100%, 0% calc(100% - 120px));
}

/* CARD CONTAINER */
.hcontainer {
    padding-top: 50px;
    padding-bottom: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui.fluid.container {
    padding-left: 110px !important;
    padding-right: 40px !important;
}


.ui.card {
    max-width: 400px !important;
    width: 100% !important;
    height: 500px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid lightgray !important;
    background-color: white !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
}


.ui.card .image img {
    height: 300px !important;
    object-fit: cover !important;
}

/* ABOUT ME */
.aboutMe {
    padding-left: 50px;
    padding-top: 20px;
    display: flex;
}

.profilePicture {
    padding-top: 30px;
    padding-left: 50px;
    padding-bottom: 20px;
}

.aboutMeText {
    padding-left: 30px;
    padding-right: 20px;
    font-size: 2em;
}

/* SKILLS -- NEEDS TO BE TWEAKED -- ISNT WORKING AS INTENDED -- */
.vcontainer {
    padding-top: 50px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vocontainer {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hocontainer {
    
    justify-content: space-between;
    gap: 0px; 
    padding-left: 40px !important;
    padding-right: 40px !important;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul li {
    background: #c0dcc8;
    padding: 8px 14px;
    border-radius: 6px;
    border-color: black;
    border: 2px solid black;
    font-weight: 500;
}

.normal-list {
    list-style: disc !important;
    padding-left: 40px !important;
    display: block !important;
}

.normal-list li {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 6px;
}


.skill-bar {
    width: 70%;
    padding: 5px;
    border-radius: 8px;
}

.skill-bar .bar {
    height: 20px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.skill-bar .fill {
    height: 100%;
    background: #2ecc71;
    width: 0;
    transition: width 0.8s ease;
}

/* Skill tiers */
.skill.primary .fill {
    width:70%;
}

.skill.proficient .fill {
    width: 50%;
}

.skill.familiar .fill {
    width: 30%;
}

.skill.covered .fill {
    width: 20%;
}


.skill-label {
    font-size: 0.8rem;
    color: #000000;
    display: block;
    margin-bottom: 0;
}



/* Project Pages */
.project-content {
    margin-top: 50px;
    margin-bottom: 100px;
    font-size: 1.5em;
    line-height: 1.6;
}

.float-right {
    float: right;
    width: 350px;     
    margin: 0 0 20px 20px;
    border-radius: 8px;
}

.float-left {
    float: left;
    width: 350px;     
    margin: 0 20px 20px 0;
    border-radius: 8px;
}

.project-content h2,
.project-content h3 {
    clear: both;
    margin-top: 60px;
}

.full-video {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    display: block;
}
