:root {
    --dark-green: #0a3a2d;
    --gold: #c5a059;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--white);
    padding-bottom: 60px; /* مساحة للقائمة السفلية */
}

/* القائمة السفلية */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: var(--dark-green);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 3px solid var(--gold);
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.nav-item span {
    margin-top: 4px;
}

/* لون الذهب عند الضغط أو النشاط */
.nav-item:hover, .nav-item:active {
    color: var(--gold);
}
