@font-face {
    font-family: 'Dual300';
    src: url('fonts/Dual-300.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ParkLaneNF';
    src: url('fonts/ParkLaneNF.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Dual300', Arial, sans-serif;
    background-color: #f7f7f7;
    overflow-x: hidden; 
    overflow-y: auto; /* Allow vertical scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
    width: 0px;
}

body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.menu-horizontal {
    background-color: #333;
    color: #fff;
    margin: 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 40px; /* Adjust the height of the navigation bar */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item {
    list-style: none;
    display: inline-block;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #999;
    text-decoration: none;
}

.hamburger {
    display: none;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

.menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.menu-list.show {
    display: block;
}

.container {
    width: 80%;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 50px; /* Reduce the top padding */
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: 'ParkLaneNF', Arial, sans-serif;
}

.profile {
    text-align: center;
}

.profile-pic {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid #333;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-media a {
    color: #333;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:after {
    display: block;
    content: attr(title);
    font-size: 0.8em;
    color: #666;
}

.social-media a:hover {
    color: #999;
    text-decoration: none;
}

.social-media .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

@media (max-width: 600px) {
    .container {
      padding-bottom: 50px;
      padding-top: 50px;
    }

    .profile-pic {
        width: 300px; /* Smaller size for mobile */
        height: 300px;
    }

    .profile {
        padding-left: 0px;
    }

    .social-media .row {
        flex-direction: column;
    }

    .menu-horizontal {
        padding: 0;
    }

    .hamburger {
        display: block;
    }

    .menu-item {
        display: block;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 40px; /* Adjust the top position */
        left: 0;
        width: 100%;
        margin: 0;
        background-color: #333;
        padding: 0;
    }

    .menu-list.show {
        display: flex;
    }

    .menu-list .menu-item {
        width: 100%;
    }
}

footer {
    background-color: #333;
    color: #fff;
    position: fixed;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
    height: 40px; /* Adjust the height of the footer */
    display: flex;
    align-items: center;
    justify-content: center; /* Add this line to center the text horizontally */
}

footer p {
    text-align: center;
    margin: 0;
    font-family: 'Dual300', Arial, sans-serif;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #999;
    text-decoration: none;
}
