/* General Styles */
* {
    margin: 0;
    overflow-x: hidden;
    font-family: monospace;
}

body, html {
    background-color: #06141B;
    color: #9BA8AB;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #9BA8AB;
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
    background-color: #444;
    width: 15px;
}

body::-webkit-scrollbar-thumb {
    background-color: #444;
    border: solid 3px #111;
    border-radius: 5px;
}

/* Navigation Bar Styling */
.nav-bar {
    background-image: linear-gradient(#000000 10%, #11212D 70%, #06141B);
}

.nav-bar-options ul {
    position: absolute;
    top: 25px;
    right: 50px;
}

.nav-bar-options li, .brand-name {
    display: inline;
    padding-left: 50px;
    font-size: x-large;
}

.brand-name img {
    margin-top: 10px;
    width: 200px;
}

.nav-bar-options li {
    transition: 0.5s;
}

.nav-bar-options li:hover {
    color: aliceblue;
    cursor: pointer;
}

#explore:hover {
    text-decoration: underline;
}

#aboutUs {
    text-decoration: underline;
}

/* Layout Styling */
.body-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.box1, .box2 {
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.box1 {
    width: 30%;
    height: 750px;
}

.box2 {
    width: 70%;
    flex-grow: 1;
}

.img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Container Styling */
.profile-container {
    margin-bottom: 10px;
    border: 2px solid;
    border-radius: 5%;
    width: 50%;
    text-align: center;
    transition: 0.5s ease;
    margin-top: 30px;
}

.profile-container img {
    display: block;
    width: 120px;
    margin: 20%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

.profile-container:hover {
    background-color: rgb(164, 172, 177);
    transform: translateY(-10px);
    color:#11212D;
    cursor: pointer;
}

.profile-container p {
    padding-bottom: 30px;
    font-size: 20px;
}

/* Navigation Styling */
.profile-nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #11212D;
}

#contentAngel, #nav-angel {
    display: block;
}

.profile-nav li {
    margin-right: 20px;
    font-size: 15px;
    padding: 5px;
}

.profile-nav li:hover {
    cursor: pointer;
    background-color: #9BA8AB;
    color: #11212D;
}

.info-content, #nav-angel, #nav-pol {
    display: none;
}

.info-content {
    font-size: 20px;
}

.basicInfo {
    margin: 20px;
}

.basicInfo h4, .basicInfo p {
    padding-left: 20px;
    text-align: justify;
}

#birth, #contact, #why {
    background-color: #11212D;
    width: 30%;
    border-radius: 50px;
    margin-bottom: 5px;
    padding: 5px 5px 5px 15px;
}

.educ {
    border-left: solid 3px #9BA8AB;
    padding-left: 10px;
    margin: 20px 0px 30px 20px;
}

.ski-hob {
    display: inline-block;
    width: 25%;
    padding: 15px;
    margin: 20px;
    border-radius: 10px;
    background-color: #11212D;
}

.ski-hob h4 {
    text-indent: 15px;
    font-size: 15px;
}

.ski-hob img {
    margin-top: 20px;
    width: 258px;
}

.projects {
    display: inline-block;
    width: 93%;
    padding: 15px;
    margin: 20px;
    border-radius: 10px;
    background-color: #11212D;
}

.ski-hob h4 {
    font-size: 15px;
}

.projects img {
    margin-top: 20px;
    width: 100%;
}

.footer-container {
    background-color: #11212D;
    display: grid;
    grid-template-columns: repeat(2, 45%);
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.footer-container p {
    padding-left: 20px;
    padding-top: 20px;
    font-size: large;
}

.icons {
    padding: 10px 50px 10px 0;
    transition: 0.5s;
    width: 40px;
    height: 40px;
}

.icons:hover {
    filter: invert(1);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-bar-options ul {
        position: static;
        text-align: center;
        margin-top: 20px;
        margin-left: -150px;
    }


    .body-container {
        flex-direction: column;
        align-items: center;
    }

    .box1, .box2 {
        width: 100%;
        padding: 15px;
    }

    .profile-container {
        width: 60%; 
    }

    .box1 {
        width: 100%;
        height: auto;
    }

    .profile-container img {
        width: 100px;
    }

    .profile-nav {
        flex-direction: column;
    }

    .profile-nav li {
        margin-bottom: 10px;
    }

    .ski-hob {
        width: 45%; 
    }

    .projects {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-bar-options ul {
        position: static;
        text-align: center;
        margin-top: 20px;
        margin-left: -150px;
    }

    .body-container {
        flex-direction: column;
    }

    .box1, .box2 {
        width: 100%;
    }

    .profile-container {
        width: 80%; 
    }

    .profile-container img {
        width: 80px;
    }

    .profile-container p {
        font-size: 16px;
    }

    .profile-nav {
        flex-direction: column;
        align-items: center;
    }

    .profile-nav li {
        font-size: 14px;
        margin: 10px 0;
    }

    .ski-hob {
        width: 80%; 
    }

    .projects {
        width: 100%;
    }

    .basicInfo h4, .basicInfo p {
        font-size: 16px;
    }

    .projects img {
        width: 100%; 
    }

    .footer-container {
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .footer-container p {
        padding-left: 0;
    }

    .icons {
        padding: 10px;
        width: 35px; 
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-bar-options ul {
        position: static;
        text-align: center;
        margin-top: 20px;
        margin-left: -150px;
    }

    .box1, .box2 {
        padding: 10px;
    }

    .profile-container {
        width: 90%;
    }

    .profile-container img {
        width: 70px;
    }

    .profile-container p {
        font-size: 14px;
    }

    .profile-nav li {
        font-size: 12px;
        padding: 8px;
    }

    .ski-hob {
        width: 100%;
        margin-bottom: 15px;
    }

    .projects {
        width: 100%;
    }

    .basicInfo h4, .basicInfo p {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr; 
        padding: 15px;
    }

    .icons {
        width: 30px; 
        height: 30px;
    }

    .footer-container p {
        font-size: 14px; 
    }
}