* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: "Nunito", serif;
    overflow-x: hidden;
}


/* Navbar styling */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    transition: all 1s ease-in-out;
    z-index: 9999;
}

.navbar.active {
    background-color: #161616af;
    backdrop-filter: blur(6px);
    transition: all 1s ease-in-out;
    position: sticky;
}

/* Logo styling */
.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links i {
    color: white;
    font-size: 40px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    color: white;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover {
    color: #ff9900;
    border-bottom: 3px solid #ff9900;
}

.response-menu {
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #161616;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 24px;
    z-index: 9999;
    transition: all 300ms ease-in-out;
}

.response-menu.active {
    right: 0%;
    transition: all 300ms ease-in-out;
}
.response-menu .close-option {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 40px;
}
.response-menu li {
    list-style-type: none;
}

.response-menu a {
    text-decoration: none;
    color: white;
}

#portfolio-menu-opener {
    display: none;
}

.response-menu a:hover {
    color: #ff9900;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .navbar {
        /* flex-direction: column; */
        text-align: center;
    }
    .nav-links li {
        display: none;
    }
    #portfolio-menu-opener {
        display: block;
    }


    .nav-links {
        /* flex-direction: column; */
        gap: 10px;
        margin-top: 10px;
    }
}

.footer {
    padding: 40px 0;
    background-color: #0d1117;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    /* Change to inline-block for horizontal layout */
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer .social>a:hover {
    opacity: 0.9;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.footer .footer-break {
    height: 2px;
    border-width: 0;
    color: gray;
    background-color: white
}


/* Section Title */
.section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}



/* Notification container */

.notification-container {
    /* Position top left */

    /* position: fixed;
        top: 2%;
        left: 2%;
        z-index: 1000;
        max-width: 80%; */

    --content-color: black;
    --background-color: #f3f3f3;
    --font-size-content: 0.75em;
    --icon-size: 1em;

    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    list-style-type: none;
    font-family: sans-serif;
    color: var(--content-color);
    position: fixed;
    right: 50%;
    top: 20px;
    z-index: 1100;
    transform: translate(50%, 0%);
}

/* Notification Item */

.notification-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: rgba(111, 111, 111, 0.2) 0px 8px 24px;
    background-color: var(--background-color);
    transition: all 250ms ease;
}

.notification-item svg {
    transition: 250ms ease;
}

.notification-item:hover {
    transform: scale(1.01);
}

.notification-item:active {
    transform: scale(1.05);
}

.notification-container svg {
    width: var(--icon-size);
    height: var(--icon-size);
    color: var(--content-color);
}

.notification-icon {
    display: flex;
    align-items: center;
}

.success {
    color: #047857;
    background-color: #91ffc6;

}

.success svg {
    color: #047857;
    background-color: #5bffaa;
}

.success:hover {
    background-color: #5bffaa;
}

/* Info */

.info {
    color: #1e3a8a;
    background-color: #7eb8ff;

}

.info svg {
    color: #1e3a8a;
}


.info:hover {
    background-color: #5ba5ff;
}

/* Warning */

.warning {
    color: #78350f;
    background-color: #ffe57e;

}

.warning svg {
    color: #78350f;
}


.warning:hover {
    background-color: #ffde59;
}

/* Error */

.error {
    color: #7f1d1d;
    background-color: #ff7e7e;
}

.error svg {
    color: #7f1d1d;
}


.error:hover {
    background-color: #ff5f5f;
}

/* Notification content */

.notification-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}

.notification-text {
    font-size: var(--font-size-content);
    user-select: none;
}

.notification-close {
    cursor: pointer;
}