@import url('https://fonts.googleapis.com/css2?family=Candal&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corben:wght@400;700&display=swap');

:root {
    --text-color: #f4f1de;
    --highlight-color: #f2cc8f;
    --highlight-color-two: #e07a5f;
    --background-color: #3d405b;
  }

/* GENERAL */

* {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

p {
    color: var(--text-color);
}

h1 {
 font-family: "Candal", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "Corben", serif;
  font-weight: 500;
  font-style: normal;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* TRANSITIONS */

a, 
    .btn {
    transition: all 300ms ease;
}

/* DESKTOP NAVIGATION */

nav, 
    .nav-links{
        display: flex;

}

nav {
    justify-content: space-around;
    align-items: center;
    height: 13vh;
}

nav a {
    font-weight: 600;
    font-size: 2rem;
    font-family: "Candal", sans-serif;
    font-style: normal;
}

.nav-links{
    gap: 15rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: var(--highlight-color);
    text-decoration: none;
    text-decoration-color: var(--highlight-color-two);
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: var(--highlight-color-two);
    text-decoration: none;

}

.logo:hover {
    cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
    display:none;
    
}

.hamburger-menu {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.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: var(--highlight-color);
    transition: all 0.3 ease-in-out;
}

.menu-links {
    position:absolute;
    top:100%;
    right:0%;
    background-color: var(--highlight-color-two);
    width: fit-content;
    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: var(--text-color);
    text-decoration: none;
    transition: all 0.3 ease-in-out;
    background-color: #2b2d46;
    color: var(--highlight-color);
}

.menu-links li {
    list-style: none;
}

.menu-links.open {
    max-height: 300px;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
    transform: none;
}

.hamburger-icon span:first-child {
    opacity: 1;
}

.hamburger-icon span:first-child {
    transform: none;
}


/*ICONS*/

.icon {
    cursor: pointer;
}

/*BUTTONS*/

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem;
}

.btn{
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
    border-width: 0;
    background: var(--highlight-color);
    color: var(--background-color);
}

.btn:hover {
    background: var(--highlight-color-two);
    cursor: pointer;
    color: var(--text-color);
}

.btn-container {
    gap: 1rem;
}

button {
    -webkit-tap-highlight-color: transparent;
}

/*SECTIONS*/

section {
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
    padding-bottom: 5vh;
}

.sectionContainer {
    display: flex;
}

.sectionPicContainer {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.sectionText {
    align-self: center;
}

.sectionText p {
    font-weight: 400;
    background-color: transparent;
    color: var(--text-color);
    text-align: justify;
}

.sectionContainer {
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.sectionPicContainer {
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.sectionTitle {
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
    padding-bottom: 2vh;
}

.arrow {
    position: absolute;
    right: 5rem;
    bottom: 2.5rem;
    cursor: pointer;
    height: 3rem;
}

/* LANDING PAGE*/
#profile {
    display: flex;
    justify-content: center;
    gap: 5rem;
    height: 90vh;
}

#profile h2 {
    font-size:1.75rem;
    text-align: center;
    color:#f4f1de;
}

#profile h3 {
    font-size:1.25rem;
    font-weight: 200;
    margin-top: 0.5rem; 
    text-align: center;
    color:#f4f1de;
}

#socialsContainer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.profilePicture {
    border-radius: 20rem;
    border-style: solid;
    border-color: #f4f1de;
}

/* HIGHLIGHTS */
#highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.highlightReel {
    position: relative;
    width: 650px;
    height: 750px;
}
.highlightReel .slide {
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.highlightReel .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.highlightReel .slide img {
    z-index: 1;
    width: 100%;
    border-radius: 5px;
}

.highlightReel .slide .info {
    position: relative;
    background: rgba(0, 0, 0, 0.01);
    top: 0;
    padding: 20px 0px;
}

.highlightReel .slide .info h2 {
    color: #f2cc8f;
    background: rgba(0, 0, 0, 0.0);
    font-size: 30px;
    text-align: center;
}

.highlightReel .slide .info p {
    color: #f4f1de;
    background: rgba(0, 0, 0, 0.01);
    font-size: 16px;
    width: 100%;
    padding: 10px 0px;
    border-radius: 4px;
    text-align: justify;
}

.highlightReel .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.highlightReel .navigation .reelBtn{
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.highlightReel .navigation .reelBtn.active {
    background:#e07a5f;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/*ABOUT SECTION*/

#about {
    position: relative;
    height: 50vh;
    
}

#about h3 {
    align-items: center;
    padding: 0.5rem;
    color:#f2cc8f;
    font-size: 20px;
    text-align: center;
}

#about h2 {
    font-size: 30px;
    text-align: center;
    color:#f2cc8f;
}

.aboutContainer {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.aboutDetailsContainer {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width:50%;
}

.aboutContainer,
.aboutDetailsContainer {
    display: flex;
}

.aboutPic {
    border-radius: 20rem;
    border-style: solid;
    border-color: #f4f1de;
}

.detailsContainer {
    padding: 1.5rem;
    flex: 1;
    text-align: center;
  }

.about {
    border-radius:50px;
    padding:2rem;
}
/*EXPERIENCE*/

#experience {
    position: relative;
    height: 45vh;
}

.experienceContainers {
    gap: 8rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.experienceSectionContainer {
    padding: 1.5rem;
    text-align: center;
}

.experienceSubTitle {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.articleContainer {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;

}

.skillColumn li {
    padding-bottom: 1rem;
    text-align: justify;
    font-size: 15px;
}


.skillColumn ul {
    text-align: left;
    color: #f4f1de;
}

/*PROJECTS*/

#projects {
    position: relative;
  }
  
  /*PROJECT IMAGES*/
.project-img {
    border-radius: 2rem;
    width: 300px;
    border-style: solid;
    border-color: #f4f1de;
  }

.project_images {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap:1rem;
  }

/* PROJECT DETAILS */
.projectDetails {
    display: flex;
    gap: 1rem;
    margin: 0.3rem;
    flex-direction: row;
    justify-content: center;
}

.projectDetails p {
    vertical-align: middle;
    text-align: center;
}

.projectDetails img {
    width: 20px;
    height: 20px;
}

.project-img-vert {
    border-radius: 1rem;
    width: 200px;
    border-style: solid;
    border-color: #f4f1de;
}


.detailsItem {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 70px;
    border-color: var(--highlight-color);
    border-style: solid;
}

.projects {
    display: flex;
    flex-direction: column;
}

.project_details_icon img{
    height: 0.5rem;
    background-color: transparent;
}

.project_details_inner p {
    color: var(--highlight-color);
}

/*PROJECT ITEMS*/
.project-item {
    padding-bottom: 3rem;
    flex: 1;
    text-align: center;
}

.projects h3 {
    align-items: center;
    padding: 0.5rem;
    font-weight: 100;
    color: #f4f1de;
    font-size: 12px;
}

.projects h2 {
    font-size: 30px;
    text-align: center;
    color: #f2cc8f;
}

.projectText {
    justify-content: center;
    width: 60%;
    margin: auto;
}

.projects p {
    text-align: justify;
    color: #f4f1de;
}

.projects ul {
    text-align: left;
    color: #f4f1de;
}

.projects li {
    padding-bottom: 0.5rem;
    text-align: justify;
}

.projectContents {
    margin: 0 1rem;
    padding: 1rem;
}

.projectBtnContainer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}
.upBtn {
    justify-content: center;
    align-items: center;
}

.upBtn button {
    border-style: none;
    cursor: pointer;
    border-width: 0;
    
}

/* CONTACT */
#contact {
    display: flex;
    justify-content: center;
    flex-direction:column;
    height: 40vh;
}

.contact-info-upper-container {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
    padding: 0.5rem;
}

.contact-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
    background-color: transparent;
}

.contact-info-container a {
    font-size: larger;
    font-weight: 500;
}

.contact-icon {
    cursor: default;
    height: 2rem;
}

.contactPage h2 {
    font-size: 17x;
    font-weight: 200;
    margin-top: 2vh;
    text-align: center;
    color: #f4f1de;
}

.contactPage {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    margin: 12vh;
}

.fire {
    width: 7vh;
    padding-top: 2.5rem;
}

/*FOOTER*/

footer {
    height: 10vh;
    margin: 5rem;
}

footer p {
    text-align: center;
}

.simpleFooter {
    height: 3vh;
    margin: 1rem;
}

/*TITLES*/

.title {
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
}
