body
{
    margin: 0;
    background-color: #FFFFFF;
    color: #e0c8b1;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#container
{
    width: 100%;
    min-height: 100vh;    
    margin-left: auto;
    margin-right: auto;
    background-color: #2A2A2A;
}

#menu
{
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: #404045;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}
#menu > div:first-child,
#menu > div:last-child {
    flex: 1;
}

#menu > div:last-child {
    text-align: right;
}
/* TELEFON */
@media (max-width: 768px) {
    #menu {
        flex-direction: column;  /* ← DODAJ TO */
        padding: 10px;
    }
    
    #logo {
        display: none;
    }
    
    #menu > div:first-child,
    #menu > div:last-child {
        flex: none;  /* ← USUŃ flex */
        width: 100%;
    }
    
    #options {
        display: flex;
        width: 100%;  /* ← DODAJ TO */
        justify-content: center;  /* ← WYCENTRUJ */
        gap: 0;
    }
    
    #contact {
        display: none !important;
    }
    
    .option {
        border-right: none;  /* ← Usuń linie między opcjami */
        padding: 8px;
        font-size: 14px !important;
    }
    #downBar {
        font-size: 16px !important;
    }
    #content.dashboard {
        line-height: 1.5 !important;
        font-size: 20px !important;
    }

}

#contact
{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

#content
{
    width: 100%;
    min-height: 900px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    background-color: #2A2A2A;
    color: #f0e4da;
}

#content.dashboard
{
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url('images/photo1.jpg');
    background-size: cover;
    background-position: center;
    font-size: 24px;
    line-height: 0.5;
}

#downBar
{
    background-color: #303035;
    padding: 30px;
    text-align: center;
    font-size: 18px;
}

#footer
{
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}

.option
{
    float: left;
    min-width: 50px;
    height: 25px;
    font-size: 18px;
    padding: 10px;
    border-right: 2px dotted #C0C0C0;
}

.option:hover
{
    background-color: #202025;
    cursor: pointer;
}

.option.active {
    background-color: #202025;
    font-weight: bold;
}
