/* GENERAL STYLING */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

#wrapper {
	width: auto;
    height: auto;
	margin: auto;
	padding: auto;
	border: solid 3.5px;
    border-color: #fff087;
	
}

/* SKIP LINKS */

#skip-links {
    width: 100%;
}

#skip-links a{
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#skip-links a:focus{
    position: static;
    width: auto;
    height: auto;
}

#skipborder {
    background-color: white;
  
}

#skipborder2 {
    background-color: white;
    margin-top: -1rem;
    padding-top: 1rem;
    padding-left: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    
}

/* MAIN PAGES */

#indexpage {
    background-color: #fefee2;
    width: auto;
    height: 920px;
}

#experiencepage {
    background-color: black;
    width: auto;
    height: 2000px;
}

#contactpage {
    background-color: #fefee2;
    width: auto;
    height: 960px;
}

#contact {
    text-align: center;
    width: auto;
    margin: 20px;
}

#confirmation {
    background-color: #fefee2;
    width: auto;
    height: 950px;
    border: 2px;
    margin-top: -26px;
    margin-left: -08px;
    margin-right: -08px;
}

h5 {
    color: black;
    font-size: 20px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

h6 {
    color: black;
    font-size: 22px;
    text-decoration: underline;
    margin-bottom: 1rem;
    font-weight: 600;
}

h8 {
    color: black;
    text-decoration: underline;
    margin-top: 0px;
    font-size: 32px;
    font-weight: 600;
}

/* CONTACT FORM */

select {
    font-size: 22px;
    margin-right: 1rem;
}

input {
    font-size: 15px;
    padding: 2px;
    margin-top: 0.5em;
    margin-left: 0.5em;
}

#input-content {
    text-align: center;
    text-decoration: underline;
    background-color: #fefee2;
}

#return-content {
    text-align: center;
    font-size: 110%;
}

#return-content a {
    color: black;
}

#return-content a:hover {
    color: #fff087;
    text-decoration: underline;
}

/* TRANSITION */

a,
 .btn {
    transition: all 300ms ease;
}

/* DESKTOP NAVIGATION */

nav, 
.nav-links,
.nav-links2 {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.nav-style {
    color: #fefee2;
}

.nav-style2 {
    color: black;
}

#desktop-nav,
ul {
    display: flex;
}

#desktop-nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
    margin: 0 -30px;
	background-color: black;
}

#desktop-nav2,
ul {
    display: flex;
}

#desktop-nav2 {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
    margin: 0 -30px;
	background-color: #fefee2;
}

.nav-links {
   font-weight: 650;
   font-style: italic;
   font-size: 1.5rem;
   list-style: none;
 column-gap: 4rem; 
    color: #fefee2;
}

.nav-links2 {
   font-weight: 650;
   font-style: italic;
   font-size: 1.5rem;
   list-style: none;
 column-gap: 4rem; 
    color: black;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #fff087;
    text-decoration: underline;
}

.logo {
  font-weight: 650;
  font-size: 40px;
  font-style: normal;
  color: #fefee2;
}

.logo2 {
  font-weight: 650;
  font-size: 40px;
  font-style: normal;
  color: black;
}

/* HAMBURGER MENU */

#hamburger-nav {
    display: none;
    background-color: black;
}

#hamburger-nav2 {
    display: none;
    background-color: #fefee2;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 100%;
    height:2px;
    background-color: white;
    transition: all 0.3 ease-in-out;
}

.hamburger-icon2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon2 span {
    width: 100%;
    height:2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}

.menu-links {
    position: absolute;
    top: 100%;
    right: 0%;
    background-color: white;
    width: auto;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
    font-style: italic;
}

.menu-links li {
    list-style: none;
}

.menu-links.open {
    max-height: 300px;
}

/* sections */

section {
    padding-top: 6vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
}

/* PROFILE SECTION */

#profile {
    display: flex;
    justify-content: center;
    column-gap: 5rem;
    height: 40vh; 
}

.section__pic-container {
    height: 350px;
    width: 450px;
    margin: 0;
}

.section__text {
    align-self: center;
    text-align: center; 
    padding-top: 1rem;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
    font-size: 1.6rem;
}

.section__text__p2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 550px;
}

.title2 {
    font-size: 2rem;
    text-align: center;
}

#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    column-gap: 1rem;
}

.icon {
    transition: transform 0.5s;
}

.icon:hover {
    transform: translateY(-8px);
        cursor: pointer;
}

/* ICONS */

.icon {
    height: 3.5rem;
}

.icon:hover {
    cursor: pointer;
}

/* BUTTONS */

.btn-container {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
}

.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 0.9rem;
    width: 9rem;
    border-radius: 2rem;
    background-color: white;
    border-color: black;
    font-size: 15px;
}

.btn-color-1 {
    border: rgb(53,53,53) 0.1rem solid;
}

.btn-color-1:hover {
    cursor: pointer;
}

.btn-color-1:hover {
    background: rgb(53,53,53);
    color: white;
}


/* PROJECTS */

.details-container {
    padding: 1rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    border: 0.1rem solid;
    border-color: black;
    text-align: center;
    margin-top: 2rem;
}

.color-container {
    border-color: rgb(163, 163, 163);
    background: #fefee2;
}

.details-container,
.color-container {
    transition: transform 0.5s;
}

.details-container:hover,
.color-container:hover {
    transform: translateY(-20px)
}

.experience-sub-title {
    color: black;
    font-weight: 600;
    font-size: 1.74rem;
    margin-bottom: 2rem;
}

.experience-details-container {
    display: flex;
    justify-content: centre;
    flex-direction: column;
}

.article-container {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 2rem;
    justify-content: space-around;
}

.title {
    font-size: 3rem;
    text-align: center;
}

h3 {
    color: #fefee2;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #fefee2;
}

h2 {
    color: #fefee2;
    text-align: center;
    padding: 0.2rem;
    text-shadow: 0 0 5px #fff087;
}

h4 {
    color: white;
    text-align: center;
    display: flex;
}

.btn-color-3,
.btn-color-2 {
    border: rgb(53,53,53) 0.1rem solid;
}

.btn-color-3:hover,
.btn-color-2:hover {
    cursor: pointer;
    background: rgb(53,53,53);
    color: #fefee2;
}

.btn-color-3: hover {
    background: rgb(0,0,0);
}

.btn-color-3,
.btn-color-2 {
    background: #fefee2;
    color: black;
}

.btn-container {
    column-gap: 10rem;
}

#projects {
    position: relative;
}

.about-containers {
    display: flex;
    column-gap: 2rem;
    margin-bottom: 2rem;
    margin-top;
}

.project-img {
    border-radius: 2rem;
    width: 90;
    height: 90%;
}

.project-title {
    margin: 1rem;
    color: black;
}

.project-btn {
    color: black;
    border-color: black;
}

