* {
    font-family: montserrat;
}




.header { 
    display: flex;
    flex-direction: row;
   justify-content: space-between; 
   height: 70px;
   align-items: center;
}

.left-section {
    padding-top: 0px;
    font-size: 25px;
    margin-left: 30px;
    cursor: pointer;
}

.right-section{ 
    
    padding-top: 0px;
}

.about-button,.home-button,.portfolio-button,.contact-button  {

    font-size: 25px;
    border: none;
    background-color: rgb(22, 9, 41);
    color: white;
    margin-left: 10px;
    margin-right: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 20px;
}

.about-button:hover, .home-button:hover,.portfolio-button:hover,.contact-button:hover { 
    /* color: black; */
    background-color: blueviolet;
    border-radius: 50px;
    
    /* padding-left: 10px; */
    
}

.home-button:link {
    background-color: white;
    color: white;
    text-decoration: none;
}



.home-button a,.about-button a,.portfolio-button a{ 
    color: white;
    text-decoration: none;
}







/* deepseek responsive */

/* =============== RESPONSIVE HEADER STYLES =============== */
/* =============== RESPONSIVE HEADER STYLES =============== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    
    .left-section {
        margin-bottom: 15px;
        margin-left: 0;
        text-align: center;
        padding-top: 0;
    }
    
    .right-section {
        padding-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-button, .home-button, .portfolio-button, .contact-button {
        font-size: 18px;
        padding: 8px 15px;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .about-button, .home-button, .portfolio-button, .contact-button {
        font-size: 16px;
        padding: 6px 12px;
        margin: 3px;
    }
    
    .left-section {
        font-size: 22px;
    }
}










