/* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fffdf7;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 10vh;
}

h3{
    color: rgb(15, 15, 15)
}

p{
    color: rgb(15, 15, 15)
}

address {
    color: rgb(255, 123, 0);
}

.email-address {
    color: #0f0f0f;
}

.phone-number {
    color:  rgb(255, 123, 0);
}

.linkedin_text {
    color:  rgb(255, 123, 0);
}

/* TRANSITION*/ 

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


/* DESKTOP NAV*/

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

nav{
    justify-content: space-around;
    align-items: center;
    height: 10vh;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-links{
    gap: 2rem;
    list-style: none;   
    font-size: 1.5rem;
}


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

a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(255, 190, 116);
}


img[src="./assets/about-pic.png"] { 
    border-radius: 25%;
    width: 400px;
    height: 600px;
    object-fit: cover;
    object-position: 100% 30%;
}

.logo{
    font-size: 2rem;
    color: white;
}

.logo a:hover{
    cursor: pointer;
    text-shadow: #ffdd7e 0 0 15px; 
    text-decoration: none;
}



/* SECTIONS */

section {
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
    align-items: center;
}

.section-container{
    display: flex;
}

/* PROFILE SECTION */

#profile {
    display: flex;
    justify-content: center;
    gap: 8rem;
    height: 80vh;
    position: relative;
}

.section__pic-container{
    display: flex;
    height: 400px;
    width: 400px;
    margin-top: 50px;
}

.section__text {
    align-self: center;
    text-align: center;
    background-color:#fbffe142;
    border: 1px solid #ffffff66;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
    color: rgb(15, 15, 15);
}

.section__text__p2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 3rem;
    text-align: center;
    color: rgb(15, 15, 15);
}

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

/* ICONS */
.icon {
    cursor: pointer;
    height: 2rem;
}

/* BUTTONS */

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

.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;

}

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

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

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

.btn-color-2 {
    background: white;
}

.btn-color-1:hover {
    background: rgb(241, 147, 23);

}

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

.btn-container {
    gap: 1rem;
}


/* ABOUT SECTION */

#about {
    position: relative;
}

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

.about-details-container {
    justify-content: center;
    flex-direction: column;
    margin-left: 3vw;
    background-color:rgba(251, 255, 225, 0.26);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;

}

.about-containers,
.about-details-container {
    display: flex;
}

.about-pic {
    border-radius: 2rem;
    margin-top: 5vh;
}


#experience {
    min-height: 100vh;
    position: relative;
}


.experience-container {
    background-color:rgba(251, 255, 225, 0.26);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-radius: 20px 180px 20px 20px;
    padding: 1.5rem;
    overflow: hidden;
    width: fit-content;
    margin-top: 2rem;
}

.experience-container.mimo-container {
    border-radius: 180px 20px 20px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: right;
    background: #ffdd7e;
    margin-left: auto;
    margin-right: 0;
    margin-top: 2rem;
}

#contact {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

