﻿.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
   
    height:100%;
}

    /* Linkler genel stil */
    .nav-menu a {
        color: #e0f7fa;
        text-decoration: none;
        font-weight: 600;
        font-size: 17px;
 
        position: relative;
        transition: all 0.3s ease;
    }
        .nav-menu a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #80deea;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }

        .nav-menu a:hover {
            color: #b2ebf2;
        }

/* Nav linkler ortada */
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0 auto; /* tam ortala */
    padding: 0;

}

    .nav-links li a{
        color: #e0f7fa;
        text-decoration: none;
        font-weight: 600;
        font-size: 17px;
        transition: color 0.3s ease;
    }
