body { margin: 0; }

/* TOP BAR */
.eph-topbar {
    background: #f5f5f5;
    font-size: 14px;
    padding: 8px 0;
}

.eph-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* HEADER */
.eph-header {
    background: #b89b4c;
    padding: 15px 0;
    position: relative;
    transition: 0.3s;
    z-index: 999;
}

.eph-logo img {
    height: 60px;
}

/* MENU */
.eph-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.eph-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

/* BUTTON */
.eph-btn {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
}

/* STICKY */
.eph-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #b89b4c;
}

/* MOBILE */
@media (max-width: 768px) {
    .eph-container {
        flex-direction: column;
        gap: 10px;
    }

    .eph-menu ul {
        flex-direction: column;
        align-items: center;
    }
}