*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
}

.icons{
    scale: 75%;
    transition: all  0.1s ease-in-out 0.1s;
}

.icons:hover{
    scale: 100%;
    cursor: pointer;
}

.navbar-container{
    background-color: #323131;
    display: flex;
    flex-direction: row;
    color: #fbf7f5;
    position: fixed; /* Fix the navbar */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's always on top */
}

.nav-text{
    font-size: x-large;
    font-weight: 600;
}

.nav-text a{
    text-decoration: none;
    color: #fbf7f5;
}


/* Small screens */
@media (max-width: 576px) {
    .nav-text {
      padding-top: 5%;
      font-size: medium;
    }

    .navbar-links a{
        font-size: x-small;
    }

}

/* mid screens */
@media (max-width: 991px){
    .nav-text {
      font-size: medium;
    }

    .navbar-links a{
        font-size: x-small;
    }

}


.navbar-links{
    display: flex;
    gap: 3%;
    font-size: small;
    font-style: italic;
    font-weight: 500;
}



.navbar-links a{
    text-decoration: none;
    color: #fbf7f5;
    /* transition: all 0.01s ease-in-out 0.01s; */
}

.navbar-links a:hover{
    font-size: medium;
    font-weight: bold;
    cursor: pointer;
}


.navbar-links li{
    list-style-type: none;
}


/* //////////////////////////////////////////////////////////////////////////////////// */

.hero-container{
    padding-bottom: 22%;
    padding-top: 10%;
    background-color: #fbf7f5;
    min-height: calc(100vh - 75px); /* Ensures full screen height */
    height: calc(100vh -75px);
}


.header-text{
    font-weight: 200;
}

.header-text-2{
    font-weight: 200;
    color: #fbf7f5;
}

.circle-frame {
    width: 200px; 
    height: 200px; 
    border-radius: 50%;
    border-style: solid;
    border-color: black;
    overflow: hidden; /* Ensures nothing spills out */
}

.circle-img {
    width: 100%; /* Fill the container */
    height: 100%; /* Ensures it stays circular */
    object-fit: cover; /* Prevents distortion */
}

/* small screen */
@media (max-width: 576px) {
    .circle-frame {
        width: 40%; /* Adjust for desired size */
        height: 40%; /* Must be the same as width */
        border-radius: 50%; /* Makes it a perfect circle */
        border-style: solid;
        border-color: black;
        overflow: hidden; /* Ensures nothing spills out */
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto; /* Centers the frame */
        background-color: #f0f0f0; /* Optional: background for contrast */
    }
}

/* //////////////////////////////////////////////////////////////////////////////////// */
.about-container{
    padding-top: 15%;
    background-color: #646262;
    height: 100vh;
}

.about-me-header{
    padding-top: 10%;
}

.about-text{
    color:#fbf7f5
}





/* ///////////////////////////////////////////////////////////////////////////////////// */

.skills-container{
    padding-top: 15%;
    background-color: #fbf7f5;
    height: 100vh;
}

.skills-icons{
    scale: 100%;
}

.skills-html-icons{
    scale: 80%;
}


/* ////////////////////////////////////////////////////////////////////////////////////////// */

.form-container{
    height: calc(100vh - 75px);
    background-color: #646262;
}

.form-header{
    padding-top: 15%;
}

.form-label{
    color: #fbf7f5;
}




.button-container{
    display: flex;
    justify-content: center;
    padding-top: 2%;
}

.send-button{
    border-style: solid;
    padding-left: 5%;
    padding-right: 5%;
    border-style: solid;
    border-color: black;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .send-button {
        background-color: #fbf7f5 !important; /* Force the color on mobile*/
        color: #323131;
    }
}






/* /////////////////////////////////////////////////////////////////////////////////////// */

.footer-container{
    background-color: #323131;
}

.footer-text{
    color: #fbf7f5;
}

/* ///////////////////////////////////////////////////////////////////////////////////////// */
