/* Header Background Setup */
*{
    margin: 0;
    padding: 0;
}

.main-header {
    position:relative;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}
/* Navigation Bar */
.navbar { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(80px); /* የጠራ መስታወት ውጤት ለመስጠት */
    border-radius: 25px;
    position: fixed;
    width: 74%;
    margin-left: -25px; 
    top: 0px; /* ከላይ ትንሽ ዝቅ እንዲል */
    height: 70px;
    z-index: 1000;
    overflow: hidden; 
    border-radius: 0;
    border-radius: 0px; border-right: 15px solid var(--secondary);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff7e34; /* በምስሉ ላይ ያለውን የብርቱካናማ ቀለም ለመጠቀም */
    transform: scale(1.1);
}

/* ምስሉን ለብቻው እዚህ ጋር ነው blur የምናደርገው */
.navbar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: url('10photo.jpg') no-repeat center center/cover; */
    filter: blur(8px); 
    z-index: -1; 
    transform: scale(1.2); /* በብዥታ ምክንያት ዳርና ዳር የሚመጣውን ነጭ መስመር ለማጥፋት */
}

    /* ሎጎውን ለመምረጥ (ለምሳሌ class name 'logo' ከሆነ) */
.logo-image {
    animation: spin 10s linear infinite;
    display: inline-block; /* እንዲሽከረከር ብሎክ መሆን አለበት */
}

/* የመሽከርከሪያው ሕግ (Keyframes) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* --- RESPONSIVE DESIGN (Media Queries) --- */
