/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');

/* Common Shared Styles */
* {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.text-primary {
    color: #FD6E0A;
}

.btn-primary {
    border-radius: 5px;
    background: #FD6E0A;
    border: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 35px;
    cursor: pointer;
}

.btn-secondary {
    border-radius: 5px;
    background: transparent;
    border: 1px solid #FD6E0A;
    color: #FD6E0A;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 35px;
    margin-left: 20px;
    cursor: pointer;
}

.section-title {
    color: #181818;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-description {
    color: #757575;
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Nav Related Styles */
.header {
    background-color: #FFF8F3;
    background-image: url('../images/header_bg.png'), url('../images/developer.png');
    background-repeat: no-repeat;
    background-position: bottom right, left;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 200px;
}

.nav-title {
    color: #181818;
    font-size: 45px;
    font-weight: 800;
}

nav > ul {
    display: flex;
    align-items: center;
}

nav li {
    list-style: none;
    margin-right: 50px;
}

nav a {
    text-decoration: none;
    color: #474747;
}

/* Banner Related Styles */
.banner {
    padding: 30px 30px 0px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    max-width: 500px;
}

.banner-greeting {
    font-size: 45px;
    color: #474747;
    margin-bottom: 0;
}

.banner-title {
    font-size: 85px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 20px;
}

.banner-description {
    margin-bottom: 30px;
}

.profile-pic {
    width: 500px;
}

/* Main Section Styles */
main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 0;
}

/* About Section Styles */
.about {
    padding: 130px;
    border-radius: 10px;
    background: #FFF8F3;
    margin: 130px 0;
}

.about-info-container {
    display: flex;
    justify-content: space-around;
}

.about-info {
    text-align: center;
}

.info-title {
    color: #757575;
    font-size: 20px;
}

.info-description {
    color: #474747;
    font-size: 20px;
    font-weight: 700;
}

/* What I Do Section Styles */
.what-i-do {
    margin-bottom: 100px;
}

.skills-container {
    display: flex;
    gap: 24px;
}

.skill {
    padding: 30px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}

.skill img {
    margin-bottom: 20px;
}

.skill-title {
    color: #181818;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.skill-description {
    color: #757575;
}

/* Resume Section Styles */
.resume-container {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.resume-column-title {
    color: #474747;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.resume-item {
    margin-bottom: 30px;
}

.resume-item-title {
    color: #474747;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.resume-item-institute {
    color: #757575;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.resume-item-description {
    color: #757575;
}

.download-cv {
    text-align: center;
}

/* Footer Styles */
footer {
    background: #FFF8F3;
    padding: 130px 200px;
    display: flex;
    gap: 100px;
}

.footer-column {
    width: 50%;
}

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

.contact-form input, textarea {
    display: block;
    margin-bottom: 24px;
    padding: 18px 35px;
    color: #757575;
    border: 0;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
}