/*custom fonts*/
@font-face {
    font-family: 'SFMonoRegular'; 
    src: url('/fonts/SFMonoRegular.woff') format('woff'); 
    }

body {
    display: flex;
    flex-direction: column;
    text-align: center;

    font-family: 'SFMonoRegular';;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

p {
    text-align: center;
}

p.message {
    text-align: center;
    padding-left: 25%;
    padding-right: 25%;
}

p.linkedin {
    padding-bottom: 20%;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    background-color: #333;
    color: #fff;
    padding: 0 40px;
}

.info-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center;    /* Center horizontally */
    min-height: 100%;       /* Ensure full height */
    text-align: center;     /* Center text inside list items */
  }
  
  .info {
    list-style-position: inside; /* Keeps bullets inside the list container */
    margin: 0;
    padding: 0;
    text-align: left;  /* Align text to the left for a cleaner appearance */
}
.info li {
    margin-bottom: 5px; /* Add space between list items */
  }  


ul.centered-list {
    text-align: center;
    list-style-type: none; /* Remove bullets */
}

/* Navigation menu */


nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.current-page {
    text-decoration: underline;
    font-weight: bold;
}

h6 {
    text-align: center;
}

ul {
    text-align: center;
    padding-left: 30%;
}

li {
    text-align: left;

}
li.nav-menu{
    color: white;
    text-align: center;

    /* padding: 10% 0 0 0; */
}

ul.nav-menu {
    text-align: left;
    list-style-type: none; /* list type for mobile*/
    /* padding: 0 0 0 0;  */

}
nav ul li a.active {
    color: #0FA4AF;
}

.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 20px; /* Adjust gap between menu items */
    display: none;
}

nav ul.active {
    display: flex; /* Show when active */
}

.fullscreen-menu.active {
    display: flex; /* Show when active */
}

.fullscreen-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
}


nav ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 15px 0; /* Space for full-screen menu */

}

nav ul li a {
    font-size: 1.5em; /* Larger text for easier tapping */

}

/* Hover effect for navigation links */
nav ul li a:hover {
    color: #0FA4AF; /* Slight color change on hover */
}

/* Active link styling */
nav ul li a.active {
    color: #0FA4AF; /* Active state color */
}

.current-page {
    text-decoration: underline;
    font-weight: bold;
}

h1, h2 {
    text-align: center;
    padding-top: 40px;
}

main {
    padding: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #097b83;
}

button:active {
    background-color: #0FA4AF; 
}

footer {
    margin-top: 100px;
    background-color: #000000;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    color: white;
}

/* Menu button styling */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #FFFFFF;
    margin-right: 20px;
}

/* Responsive design to display menu button */
/* Responsive styles */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        height: auto;
    }

    .menu-toggle {
        display: inline-block;
    }

    .back-arrow{
        display: inline-block;
    }

    nav ul {
        display: none; /* Hide menu by default */
        flex-direction: column;
        gap: 0px;
    }

    nav ul.nav-menu{
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        /* width: 100vw;
        height: 100vh; */
        background-color: rgba(0, 0, 0, 0.9); /* Dark background with transparency */
        z-index: -1;
    }

    nav ul.active {
        display: flex; /* Show on toggle */
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 8vw;
    }

    nav ul {
        gap: 20px;
    }
}

/*replacement*/
/* Base styles for navigation */
nav ul {
    list-style: none;
    display: flex; /* Horizontal layout for larger screens */
    justify-content: space-around;
    margin: 0;
    padding: 0;
    gap: 30px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1em;
    padding: 15px 10px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #0FA4AF;
}

nav ul li a.active {
    color: #0FA4AF;
}

/* Menu toggle button for small screens */
.menu-toggle {
    font-size: 1.5em;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Hidden by default */
}

/* Fullscreen navigation menu (mobile view) */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide horizontal menu */
        flex-direction: column; /* Stack items vertically */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    nav ul.active {
        display: flex; /* Show menu when active */
    }

    nav ul li {
        margin: 20px 0; /* Space between items */
    }

    nav ul li a {
        font-size: 1.5em; /* Larger text for easier tapping */
    }

    .menu-toggle {
        display: inline-block; /* Show toggle button */
    }
}

/* Maintain horizontal layout on larger screens */
@media (min-width: 769px) {
    nav ul {
        display: flex; /* Show horizontal menu */
        flex-direction: row;
        position: static;
        background: none;
    }

    nav ul li {
        margin: 0; /* Reset spacing */
    }

    .menu-toggle {
        display: none; /* Hide toggle button */
    }
}