/* ------------------------------------------------
   GLOBAL
-------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    90deg,
    rgba(23, 21, 21, 1) 0%,
    rgba(23, 23, 23, 1) 45%,
    rgba(20, 19, 19, 1) 100%
  );
  scroll-behavior: smooth;
}

.highlight {
  color: #00ff88;
}
    

/* ------------------------------------------------
   HEADER
-------------------------------------------------*/
header {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0f0f0f;
  width: 100%;
}

.left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fafafa;
  margin-left: 1%;
}

.logo {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.logo:hover {
  filter: brightness(0) saturate(100%) invert(58%) sepia(90%)
    saturate(1000%) hue-rotate(140deg);
}

.phone {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
}

.left:hover .phone {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: none) {
  .phone {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.btns {
    float: right;
    margin-right: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.hb {
    border: none;
    border-right: 1px solid #fafafa;
    background: none;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1em;
    color: #fafafa;
    transition: 0.3s;
}

.hb:hover {
    background-color: #221f1f;
    border-right: 1px solid #00ff88;
    cursor: pointer;
}

@media (max-width: 768px) {
    .btns {
        float: none;
        margin-right: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;       
    }

    .hb {
        font-size: 11px;
        padding: 0.5em;
    }

    .logo {
        width: 24px;
        height: 24px;
    }

    .phone {
        font-size: 12px;
    }
}

/* ------------------------------------------------
   FOOTER
-------------------------------------------------*/
footer {
    background-color: black;
    width: 100%;
    height: 30%;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-sizing: border-box;
    color: #fafafa;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.copyright {
    margin: 0;
    font-size: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fafafa;
    margin-top: 1em;
}

@media (max-width: 768px) {
    footer {
        height: auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-flex {
        align-items: center;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 10px;
        height: auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-flex {
        align-items: center;
    }

    .copyright {
        font-size: 8px;
    }
}


/* ------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------*/
.name {
    margin: 0;
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: 400;
}

.home-link {
    text-decoration: none;
    color: #fafafa;
}

.home-h1 {
    margin: 0;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-h2 {
    margin: 0;
    font-size: 70px;
    width: fit-content;
    float: left;
    transition: 0.3s;
}

.home-h2:hover {
    color: #00FF88;
    cursor: pointer;
}

h4{
    transition: 0.5s ease;
}

.icon {
    margin: 0;
    width: 38px;
    height: 38px;
}

.me {
    margin: 0;
    font-size: 32px;
    float: left;
    margin-top: 4rem;
    text-align: left;
}

.in {
    width: 250px;
    font-size: 18px;
    margin: 0;
}

.work-heading{
    margin: 0;
    font-size: 32px;
    float: right;
    text-align: right;
}

@media (max-width: 768px) {
    .home-h1 {
        font-size: 30px;
    }

    .home-h2 {
        font-size: 60px;
    }

    .icon {
        width: 30px;
        height: 30px;
    }

    .me {
        font-size: 24px;
        margin-top: 2rem;
    }

    .in {
        width: 200px;
        font-size: 16px;
    }

    .work-heading{
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .home-h1 {
        font-size: 24px;
    }

    .home-h2 {
        font-size: 48px;
    }

    .icon {
        width: 24px;
        height: 24px;
    }

    .me {
        font-size: 20px;
        margin-top: 1rem;
    }

    .in {
        width: 150px;
        font-size: 13px;
    }

    .work-heading{
        font-size: 20px;
    }
}

/* ------------------------------------------------
   BEGINNING SECTION
-------------------------------------------------*/
.beginning {
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    color: #fafafa;
    justify-content: center;
}

.beg-flex {
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-left: 2em;
    margin-top: 6em;
    margin-right: 14em;
}

.beg-btns {
    margin: 0;
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

.b-btn {
    width: 150px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #fafafa;
    color: #fafafa;
    background: none;
    margin-left: 1em;
    transition: 0.3s ease;
}

.b-btn:hover {
    cursor: pointer;
    background-color: rgba(0,255,137,0.84);
    color: #0f0f0f;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.info {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.pf-line {
    margin: 0;
    width: 350px;
    margin-top: 1rem;
    border: 1px solid #00ff88;
    text-shadow: 0 0 8px #00ff88, 0 0 16px #00ff88;
}

@media (max-width: 768px) {
    
    .b-btn {
        width: 120px;
        height: 40px;
        font-size: 12px;
    }

    .beg-btns {
        margin-bottom: 1em;
    }

    .beg-flex {
        margin-right: 4em;
    }

    .pf-line {
        width: 250px;
    }
}

@media (max-width: 480px) {
    
    .b-btn {
        width: 80px;
        height: 36px;
        font-size: 10px;
        margin-left: 0.5em;
    }

    .beg-btns {
        margin-bottom: 1em;
    }

    .beg-flex {
        margin-right: 8em;
        margin-left: 0.5em;
    }

    .pf-line {
        width: 150px;
    }

    .profile {
        margin-bottom: 1em;
    }
}

/* ------------------------------------------------
   WHO SECTION
-------------------------------------------------*/
.who {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #0f0f0f;
    color: #fafafa;
    height: 600px;
}

.who-column {
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    text-align: left;
}

.who-pic {
    margin: 0;
    height: 600px;
    width: 300px;
    object-fit: cover;
    margin-left: 6em;
    margin-top: 3em;
}

.yap-pic1 {
    margin-top: 3em;
    margin-left: 1%;
    width: 330px;
    height: 320px;
    z-index: 2;
    border-bottom: 2px solid #00FF88;
    border-right: 2px solid #00FF88;
}

.yap-pic2 {
    margin-top: 3em;
    margin-left: -120px;
    width: 310px;
    height: 295px;
    z-index: 1;
    margin-bottom: 75px;
    border-bottom: 2px solid #fafafa;
    border-right: 2px solid #fafafa;
}

.who-line {
    margin: 0;
    border: 1px solid #fafafa;
    margin-top: 1rem;
    width: 98%;
    margin-bottom: 1rem;
}

.who-line1 {
    margin: 0;
    border: 1px solid #fafafa;
    margin-top: 1rem;
    width: 26%;
    margin-bottom: 1rem;
}

.ab-btn {
    width: 150px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid black;
    background-color: #fafafa;
    transition: 0.4s;
}

.ab-btn:hover {
    cursor: pointer;
    background-color: rgba(0,255,137,0.84);
}

.greet {
    margin: 0;
    font-size: 25px;
}

.yap {
    margin: 0;
    font-size: 15px;
    width: 580px;
}

@media (max-width: 768px) {
    .who {
        height: auto;
    }

    .who-column {
        text-align: left;
    }

    .who-pic {
        width: 200px;
        height: 400px;
    }

    .greet {
        font-size: 20px;
    }

    .yap-pic1 {
        width: 210px;
        height: 210px;
    }

    .yap-pic2 {
        width: 200px;
        height: 190px;
        margin-bottom: 200px;
        margin-left: -160px;
    }

    .yap {
        width: 380px;
        font-size: 12px;
    }

    li{
        font-size: 12px;
    }

    .ab-btn {
        width: 120px;
        height: 40px;
    }
}

@media (max-width: 680px) {
    .who{
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .me{
        text-align: center;
    }

    .who-column {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .yap{
        width: 400px;
        font-size: 12px;
    }

    .yap-pic1 {
        display: none;
    }
    
    .yap-pic2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .who-pic {
        width: 175px;
        height: 320px;
    }

    .yap {
        width: 250px;
        font-size: 11px;
    }

    li{
        font-size: 11px;
    }

    .ab-btn {
        width: 80px;
        height: 36px;
        font-size: 12px;
    }
}

/* ------------------------------------------------
   GALLERY
-------------------------------------------------*/
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0.4rem;
    max-width: 1100px;
    margin: 3rem auto;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
    border: none;
}

.gallery > :nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery > :nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery > :nth-child(3) { grid-column: 2; grid-row: 2;}
.gallery > :nth-child(4) { grid-column: 3; grid-row: 2 / span 2; }
.gallery > :nth-child(5) { grid-column: 1 / span 2; grid-row: 3; } 
.gallery > :nth-child(6) { grid-column: 4; grid-row: 1 / span 2; } 
.gallery > :nth-child(7) { grid-column: 4; grid-row: 3; } 
.gallery > :nth-child(8) { grid-column: 3; grid-row: 1; }

.item {
    background: #333;
    border-radius: 5%;
    transition: 0.5s ease;
}

.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
}

@media (max-width: 480px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 120px;
  }
}

/* ------------------------------------------------
   WORK SECTION
-------------------------------------------------*/
.work {
    margin: 0;
    width: 100%;
    height: 600px;
    justify-content: center;
    align-items: center;
    background-color: #0f0f0f;
    display: flex;
    color: #fafafa;
}

.work-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: right;
}

.work-image {
    width: 345px;
    height: 340px;
    margin-right: 6em;
    object-fit: cover;
    border: 1px solid #fafafa;
}

.work-line{
    margin: 0;
    border: 1px solid #fafafa;
    margin-top: 1rem;
    width: 98%;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.work-line1{
    margin: 0;
    border: 1px solid #fafafa;
    margin-top: 1rem;
    width: 26%;
    margin-bottom: 1rem;
}

.work-ul{
    list-style-position: inside;
    direction: rtl;
    text-align: right; 
    padding: 0;
}

.yap a:hover{
    cursor: pointer;
    color: #00FF88;
}

@media (max-width: 768px) {
    .work {
        height: auto;
    }

    .work-column {
        text-align: center;
        align-items: center;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .work-image {
        display: none;
    }

    .work-line{
        width: 90%;
        margin-left: 0;
    }

    .work-line1{
        width: 50%;
        margin-left: 0;
    }
    
}

/* ------------------------------------------------
   WHAT SECTION
-------------------------------------------------*/
.what {
    margin: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    color: #fafafa;
}

.offer {
    margin: 0;
    text-align: left;
    font-size: 32px;
    margin-top: 1em;
}

.grid {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
}

.what-line {
    margin: 0;
    width: 550px;
    margin-top: 1em;
    margin-bottom: 2em;
}

.c-btn {
    width: 150px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #fafafa;
    color: #fafafa;
    background: none;
    transition: 0.3s ease;
    margin-top: 3em;
}

.c-btn:hover {
    cursor: pointer;
    background-color: rgba(0,255,137,0.84);
    color: #0f0f0f;
}

.card {
    margin: auto;
    width: 313px;
    height: 405px;
    border: 2px solid #0f0f0f;
    background-color: #0f0f0f;
    border-radius: 4%;
    transition: 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card img {
    margin-top: 1em;
    width: 50px;
    height: 50px;
}

.card:hover {
    box-shadow: 0px 0px 5px -1px rgba(0,255,137,0.62);
}

.card:hover h4{
    color: #00FF88;
}

.card p{
    width: 270px;
    text-align: center;
}

@media (max-width: 768px) {
    .what-line {
        width: 400px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        width: 250px;
        height: 350px;
        align-items: center;
    }

    .card:last-child {
        grid-column: 1 / span 2;
    }

    .card p{
        width: 200px;
    }

    .c-btn {
        margin-top: 1em;
        width: 120px;
        font-size: 14px;
        border-radius: 8px;
    }
}

@media (max-width: 550px) {
    .what-line {
        width: 300px;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .card:last-child {
        grid-column: auto; /* reset the span from the 768px block */
    }

    .card {
        width: 250px;
        height: 350px;
        align-items: center;
    }

    .card p{
        width: 200px;
    }

    .c-btn {
        margin-top: 1em;
        width: 120px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* ------------------------------------------------
   QUOTE SECTION
-------------------------------------------------*/
.quote {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 400px;
    text-align: center;
    background-color: #0f0f0f;
}

.quote-heading {
    text-align: center;
    color: white;
    font-size: 40px;
    width: 700px;
    margin: 0;
    transition: opacity 1s ease-in-out;
}

.author {
    color: #00ff88;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .quote-heading {
        width: 500px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .quote-heading {
        width: 300px;
        font-size: 20px;
    }
}

/* ------------------------------------------------
   CONTACT SECTION
-------------------------------------------------*/
.contact-grid {
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    margin-top: 2em;
    margin-bottom: 7em;
}

.contact-h2 {
    font-size: 32px;
    margin: 0;
}

.contact-line {
    margin: 0;
    width: 400px;
    margin-top: 1em;
    margin-bottom: 2em;
    border: 1px solid #00ff88;
}

.contact-p {
    font-size: 18px;
    margin: 0;
    width: 400px;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: left;
    gap: 20px;
    margin-top: 2em;
    text-align: left;
}

.contact-pic{
    width: 400px;
    height: 500px;
    object-fit: cover;
    transition: 0.3s ease;
    float: right;
}

.contact-frame{
    margin: 0;
    width: 405px;
    height: 505px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #00ff88;
    padding: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        text-align: center;
    }

    .contact-pic {
        width: 300px;
        height: 400px;
    }

    .contact-frame {
        width: 305px;
        height: 405px;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        flex-direction: column;
        text-align: center;
    }

    .contact-p {
        font-size: 16px;
        width: 330px;
        text-align: center;
    }

    .contact-line {
        width: 300px;
    }

    .contact-pic {
        width: 250px;
        height: 350px;
    }

    .contact-frame {
        width: 255px;
        height: 355px;
    }
}

/* ------------------------------------------------
   ABOUT SECTION
-------------------------------------------------*/

.about-grid {
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    margin-top: 3em;
    margin-bottom: 3em;
}

.about-h2 {
    font-size: 32px;
    margin: 0;
}

.about-line {
    margin: 0;
    width: 400px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border: 1px solid #00ff88;
}

.about-p {
    font-size: 18px;
    margin: 0;
    margin-bottom: 1em;
    width: 450px;
}

.about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: left;
    gap: 20px;
    text-align: left;
}

.about-pic{
    width: 340px;
    height: 450px;
    transition: 0.3s ease;
    float: right;
}

.about-frame{
    margin: 0;
    width: 345px;
    height: 455px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 5px solid #00ff88;
}

.about-grid2{
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    margin-bottom: 3em;
    background-color: #0f0f0f;
}

.about-h22 {
    font-size: 32px;
    margin: 0;
}

.about-line2 {
    margin: 0;
    width: 400px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border: 1px solid #00ff88;
}

.about-p2 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 1em;
    width: 450px;
}

.about-ul{
    margin: 0;
    padding: 0;
}

.about-flex2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: right;
    gap: 20px;
    text-align: left;
}

.about-pic2{
    width: 400px;
    height: 400px;
    object-fit: cover;
    transition: 0.3s ease;
    float: left;
}

.about-frame2{
    margin: 0;
    width: 405px;
    height: 405px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #00ff88;
    margin-top: 4em;
    margin-bottom: 4em;
    padding: 20px;
}

.about-grid3{
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    margin-top: 2em;
    margin-bottom: 7em;
}

.about-h23 {
    font-size: 32px;
    margin: 0;
}

.about-line3 {
    margin: 0;
    width: 400px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border: 1px solid #00ff88;
}

.about-p3 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 0.5em;
    width: 500px;
}

.about-flex3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-grid {
        text-align: center;
    }

    .about-p {
        width: 300px;
        font-size: 16px;
        margin-bottom: 0.5em;
    }

    .about-line {
        width: 300px;
    }

    .about-pic {
        width: 250px;
        height: 350px;
    }

    .about-frame {
        width: 255px;
        height: 355px;
    }

    .about-grid2 {
        text-align: center;
    }

    .about-h22 {
        margin-top: 1em;
    }

    .about-p2 {
        width: 300px;
        font-size: 16px;
        margin-bottom: 0.5em;
    }

    .about-line2 {
        width: 300px;
    }

    .about-pic2 {
        width: 250px;
        height: 250px;
        
    }

    .about-flex2 {
        order: 1;
    }

    .about-frame2 {
        width: 255px;
        height: 255px;
        margin-bottom: 1em;
        margin-top: 0em;
        order: 2;
    }

    .about-grid3 {
        flex-direction: column;
        text-align: center;
    }

    .about-p3 {
        width: 300px;
        font-size: 16px;
    }

    .about-line3 {
        width: 300px;
    }

    .about-ul {
        margin-bottom: 1em;
    }

    .about-ul li {
        font-size: 14px;
        margin-bottom: 0.5em;
    }

}

@media (max-width: 680px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .about-p {
        width: 300px;
        font-size: 16px;
    }

    .about-line {
        width: 300px;
    }

    .about-pic {
        width: 250px;
        height: 350px;
    }

    .about-frame {
        width: 255px;
        height: 355px;
    }

    .about-grid2 {
        flex-direction: column;
        text-align: center;
    }

    .about-p2 {
        width: 300px;
        font-size: 16px;
    }

    .about-line2 {
        width: 300px;
    }

    .about-pic2 {
        width: 250px;
        height: 250px;
    }

    .about-frame2 {
        width: 255px;
        height: 255px;
        margin-bottom: 1em;
    }

    .about-grid3 {
        flex-direction: column;
        text-align: center;
    }

    .about-p3 {
        width: 300px;
        font-size: 16px;
    }

    .about-line3 {
        width: 300px;
    }

    .about-ul li {
        font-size: 14px;
        margin-bottom: 0.5em;
    }
}

/* ------------------------------------------------
   404 PAGE SECTION
-------------------------------------------------*/

.not-found {
    width: 100%;
    min-height: 70vh; /* gives it enough vertical room to not look cramped */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fafafa; /* matches the light text color you're using elsewhere, like .what */
}

.nf-code {
    font-size: 80px;
    margin: 0;
}

.nf-message {
    font-size: 18px;
    margin: 1em 0;
    color: #cfcfcf; /* slightly softer than pure white for secondary text */
}

.nf-link {
    color: #00FF88; /* matches your existing hover/accent green */
    text-decoration: none;
    border: 1px solid #00FF88;
    padding: 0.5em 1.5em;
    border-radius: 8px;
    transition: 0.3s ease;
}

.nf-link:hover {
    background-color: #00FF88;
    color: #0f0f0f;
}