.source-code-font {
    font-family: "Source Code Pro", monospace;
}

.roboto-font {
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #1e1e2f;
    margin: 0;
}

nav {
    background-color: #28283e;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-title {
    font-size: 32px;
}

.nav-tabs {
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.nav-tabs li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

a {
    text-decoration: none;
}

.nav-tabs li a:hover {
    color: #008fbf;
}

.nav-tabs li a.active {
    color: #008fbf;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

.neon-logo {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    color: #ff69b4;
    /* glow effect */
    text-shadow:
        0 0 5px #ff69b4,
        0 0 10px #ff69b4,
        0 0 20px #ff69b4,
        0 0 40px #ff69b4,
        0 0 80px #ff69b4;
    /* flicker effect every 2 seconds */
    animation: flicker 2s infinite alternate;
}

/* custom animation for neon sign look */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 5px #ff69b4,
            0 0 10px #ff69b4,
            0 0 20px #ff69b4,
            0 0 40px #ff69b4,
            0 0 80px #ff69b4;  
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }
}

.tagline {
    text-align: center;
    color: white;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.button-wrapper {
    text-align: center;
}

.work-link {
    display: inline-flex;
    text-decoration: none;
}

.work-button {
    background-color: #008fbf;
    width:max-content;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto;
}

.work-button p {
    margin: 0;
    color:#1e1e2f;
    font-weight: bold;
    font-size: 20px;
}

.about {
    background-color: #28283e;
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
    padding: 30px;
    color: white;
    border: #008fbf 3px solid;
    border-radius: 20px;
    box-shadow: 0 0 15px #ff69b4;
}

.about-title {
    color: #ff69b4;
    font-size: 48px;
    margin: 0;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-text {
    padding: 0;
    font-size: 18px;
    flex: 2;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    border: #ff69b4 3px solid;
    border-radius: 100%;
    box-shadow: 0 0 15px #008fbf;
}

footer {
    background-color: #28283e;
    margin-top: 40px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-links img {
    width: 35px;
    height: auto;
}

.social-links img.resume-icon {
    width: 25px;
}

.copyright {
    color: white;
    text-align: right;
    margin-bottom: 0;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

.nav-tabs {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem 2rem;
    background-color: #28283e;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1000;
  }

  .nav-tabs.open {
    display: flex;
    animation: dropdown 0.3s ease-in-out;
  }

  @keyframes dropdown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .about-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .nav-title {
        font-size: clamp(1rem, 5vw, 2rem);
    }

    .neon-logo {
        font-size: 2.5rem;
    }

    .tagline {
        padding-left: 20px;
        padding-right: 20px;
        font-size:18px;
    }

    .about {
       width: 70%;
       margin: 0 auto; 
       margin-top: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 14px;
    }
}